Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Try another thread</p> <pre><code>new Thread(new Runnable(){ public void run(){ ...here all code }}); </code></pre> <p>. But by Android SDK source codes look like 4.0.2_r1</p> <p><pre><a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#130" rel="nofollow">130</a> <b>private</b> CursorWindow(<a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/os/Parcel.java#Parcel" rel="nofollow" title="android.os.Parcel">Parcel</a> source) {<br/><a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#131" rel="nofollow">131</a> mStartPos = source.<a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/os/Parcel.java#Parcel.readInt%28%29" rel="nofollow" title="android.os.Parcel.readInt() : int">readInt</a>();<br/><a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#132" rel="nofollow">132</a> mWindowPtr = <a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#CursorWindow.nativeCreateFromParcel%28android.os.Parcel%29" rel="nofollow" title="android.database.CursorWindow.nativeCreateFromParcel(android.os.Parcel) : int">nativeCreateFromParcel</a>(source);<br/><a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#133" rel="nofollow">133</a> <b>if</b> (mWindowPtr == 0) {<br/><a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#134" rel="nofollow">134</a> <b>throw</b> <b>new</b> <a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindowAllocationException.java#CursorWindowAllocationException" rel="nofollow" title="android.database.CursorWindowAllocationException">CursorWindowAllocationException</a>("Cursor window could not be "<br/><a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#135" rel="nofollow">135</a> + "created from binder.");<br/><a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#136" rel="nofollow">136</a> }<br/><a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#137" rel="nofollow">137</a> mName = <a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#CursorWindow.nativeGetName%28int%29" rel="nofollow" title="android.database.CursorWindow.nativeGetName(int) : String">nativeGetName</a>(mWindowPtr);<br/><a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#138" rel="nofollow">138</a> mCloseGuard.open("close");<br/><a href="http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.2_r1/android/database/CursorWindow.java#139" rel="nofollow">139</a> }<br/></pre> where <strong>mWIndowPtr</strong> is <strong>Int</strong></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload