HomeSort by relevance Sort by last modified time
    Searched refs:obtain (Results 1 - 25 of 2590) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
Message.java 6 * You may obtain a copy of the License at
31 * one of these is to call {@link #obtain Message.obtain()} or one of the
98 public static Message obtain() { method in class:Message
111 * Same as {@link #obtain()}, but copies the values of an existing
116 public static Message obtain(Message orig) { method in class:Message
117 Message m = obtain();
133 * Same as {@link #obtain()}, but sets the value for the <em>target</em> member on the Message returned.
137 public static Message obtain(Handler h) { method in class:Message
138 Message m = obtain();
151 public static Message obtain(Handler h, Runnable callback) { method in class:Message
166 public static Message obtain(Handler h, int what) { method in class:Message
182 public static Message obtain(Handler h, int what, Object obj) { method in class:Message
201 public static Message obtain(Handler h, int what, int arg1, int arg2) { method in class:Message
222 public static Message obtain(Handler h, int what, method in class:Message
    [all...]
ServiceManagerNative.java 6 * You may obtain a copy of the License at
116 Parcel data = Parcel.obtain();
117 Parcel reply = Parcel.obtain();
128 Parcel data = Parcel.obtain();
129 Parcel reply = Parcel.obtain();
141 Parcel data = Parcel.obtain();
142 Parcel reply = Parcel.obtain();
152 Parcel data = Parcel.obtain();
153 Parcel reply = Parcel.obtain();
164 Parcel data = Parcel.obtain();
    [all...]
Handler.java 6 * You may obtain a copy of the License at
174 * If you don't want that facility, just call Message.obtain() instead.
178 return Message.obtain(this);
189 return Message.obtain(this, what);
203 return Message.obtain(this, what, obj);
217 return Message.obtain(this, what, arg1, arg2);
232 return Message.obtain(this, what, arg1, arg2, obj);
392 Message msg = Message.obtain();
408 Message msg = Message.obtain();
574 Message m = Message.obtain();
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneStateListener.java 6 * You may obtain a copy of the License at
260 Message.obtain(mHandler, LISTEN_SERVICE_STATE, 0, 0, serviceState).sendToTarget();
264 Message.obtain(mHandler, LISTEN_SIGNAL_STRENGTH, asu, 0, null).sendToTarget();
268 Message.obtain(mHandler, LISTEN_MESSAGE_WAITING_INDICATOR, mwi ? 1 : 0, 0, null)
273 Message.obtain(mHandler, LISTEN_CALL_FORWARDING_INDICATOR, cfi ? 1 : 0, 0, null)
279 Message.obtain(mHandler, LISTEN_CELL_LOCATION, 0, 0, location).sendToTarget();
283 Message.obtain(mHandler, LISTEN_CALL_STATE, state, 0, incomingNumber).sendToTarget();
287 Message.obtain(mHandler, LISTEN_DATA_CONNECTION_STATE, state, networkType, null).
292 Message.obtain(mHandler, LISTEN_DATA_ACTIVITY, direction, 0, null).sendToTarget();
295 Message.obtain(mHandler, LISTEN_SIGNAL_STRENGTHS, 0, 0, signalStrength).sendToTarget()
    [all...]
  /frameworks/base/core/java/android/database/
BulkCursorNative.java 6 * You may obtain a copy of the License at
208 Parcel data = Parcel.obtain();
209 Parcel reply = Parcel.obtain();
231 Parcel data = Parcel.obtain();
232 Parcel reply = Parcel.obtain();
248 Parcel data = Parcel.obtain();
249 Parcel reply = Parcel.obtain();
270 Parcel data = Parcel.obtain();
271 Parcel reply = Parcel.obtain();
293 Parcel data = Parcel.obtain();
    [all...]
  /frameworks/base/core/java/android/app/
ActivityManagerNative.java 6 * You may obtain a copy of the License at
    [all...]
ApplicationThreadNative.java 6 * You may obtain a copy of the License at
430 Parcel data = Parcel.obtain();
443 Parcel data = Parcel.obtain();
455 Parcel data = Parcel.obtain();
466 Parcel data = Parcel.obtain();
477 Parcel data = Parcel.obtain();
490 Parcel data = Parcel.obtain();
510 Parcel data = Parcel.obtain();
530 Parcel data = Parcel.obtain();
541 Parcel data = Parcel.obtain();
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelTest.java 6 * You may obtain a copy of the License at
51 method = "obtain",
62 method = "obtain",
67 Parcel p1 = Parcel.obtain();
69 Parcel p2 = Parcel.obtain();
71 Parcel p3 = Parcel.obtain();
73 Parcel p4 = Parcel.obtain();
75 Parcel p5 = Parcel.obtain();
77 Parcel p6 = Parcel.obtain();
79 Parcel p7 = Parcel.obtain();
    [all...]
MessageTest.java 6 * You may obtain a copy of the License at
120 Message expected = Message.obtain(mHandler, mRunnable);
136 notes = "Test method: obtain",
137 method = "obtain",
141 Message message = Message.obtain();
155 notes = "Test method: obtain",
156 method = "obtain",
160 Message message = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ);
161 Message expected = Message.obtain(message);
172 notes = "Test method: obtain",
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountService.java 6 * You may obtain a copy of the License at
56 Parcel _data = Parcel.obtain();
57 Parcel _reply = Parcel.obtain();
73 Parcel _data = Parcel.obtain();
74 Parcel _reply = Parcel.obtain();
90 Parcel _data = Parcel.obtain();
91 Parcel _reply = Parcel.obtain();
111 Parcel _data = Parcel.obtain();
112 Parcel _reply = Parcel.obtain();
129 Parcel _data = Parcel.obtain();
    [all...]
IMountServiceListener.java 6 * You may obtain a copy of the License at
113 Parcel _data = Parcel.obtain();
114 Parcel _reply = Parcel.obtain();
138 Parcel _data = Parcel.obtain();
139 Parcel _reply = Parcel.obtain();
  /frameworks/base/graphics/java/android/graphics/
TemporaryBuffer.java 6 * You may obtain a copy of the License at
23 /* package */ static char[] obtain(int len) { method in class:TemporaryBuffer
  /frameworks/base/core/java/android/widget/
ExpandableListPosition.java 6 * You may obtain a copy of the License at
82 return obtain(GROUP, groupPosition, 0, 0);
86 return obtain(CHILD, groupPosition, childPosition, 0);
106 static ExpandableListPosition obtain(int type, int groupPos, int childPos, int flatListPos) { method in class:ExpandableListPosition
  /cts/tests/tests/view/src/android/view/cts/
VelocityTrackerTest.java 6 * You may obtain a copy of the License at
41 method = "obtain",
45 VelocityTracker vt = VelocityTracker.obtain();
56 VelocityTracker vt = VelocityTracker.obtain();
60 VelocityTracker vt2 = VelocityTracker.obtain();
96 VelocityTracker vt = VelocityTracker.obtain();
99 MotionEvent me = MotionEvent.obtain(0L, 1, 1, .0f, .0f, 0);
TouchDelegateTest.java 6 * You may obtain a copy of the License at
113 mActionDownInside = MotionEvent.obtain(0, 0, ACTION_DOWN, mXInside, mYInside, 0);
114 mActionDownOutside = MotionEvent.obtain(0, 0, ACTION_DOWN, mXOutside, mYOutside, 0);
115 mActionUpInside = MotionEvent.obtain(0, 0, ACTION_UP, mXInside, mYInside, 0);
116 mActionUpOutside = MotionEvent.obtain(0, 0, ACTION_UP, mXOutside, mYOutside, 0);
117 mActionMoveInside = MotionEvent.obtain(0, 0, ACTION_MOVE, mXInside, mYInside, 0);
118 mActionMoveOutside = MotionEvent.obtain(0, 0, ACTION_MOVE, mXOutside, mYOutside, 0);
119 mActionCancelInside = MotionEvent.obtain(0, 0, ACTION_CANCEL, mXInside, mYInside, 0);
120 mActionCancelOutside = MotionEvent.obtain(0, 0, ACTION_CANCEL, mXOutside, mYOutside, 0);
155 view.onTouchEvent(MotionEvent.obtain(0, 0, ACTION_DOWN, mXInside, mYInside, 0))
    [all...]
View_BaseSavedStateTest.java 6 * You may obtain a copy of the License at
43 BaseSavedState state = new BaseSavedState(Parcel.obtain());
  /frameworks/base/core/java/android/speech/
SpeechRecognizer.java 6 * You may obtain a copy of the License at
230 putMessage(Message.obtain(mHandler, MSG_CHANGE_LISTENER, listener));
275 putMessage(Message.obtain(mHandler, MSG_START, recognizerIntent));
290 putMessage(Message.obtain(mHandler, MSG_STOP));
300 putMessage(Message.obtain(mHandler, MSG_CANCEL));
444 Message.obtain(mInternalHandler, MSG_BEGINNING_OF_SPEECH).sendToTarget();
448 Message.obtain(mInternalHandler, MSG_BUFFER_RECEIVED, buffer).sendToTarget();
452 Message.obtain(mInternalHandler, MSG_END_OF_SPEECH).sendToTarget();
456 Message.obtain(mInternalHandler, MSG_ERROR, error).sendToTarget();
460 Message.obtain(mInternalHandler, MSG_READY_FOR_SPEECH, noiseParams).sendToTarget()
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/
VelocityTest.java 6 * You may obtain a copy of the License at
39 VelocityTracker vt = VelocityTracker.obtain();
51 VelocityTracker vt = VelocityTracker.obtain();
66 VelocityTracker vt = VelocityTracker.obtain();
77 VelocityTracker vt = VelocityTracker.obtain();
88 VelocityTracker vt = VelocityTracker.obtain();
100 VelocityTracker vt = VelocityTracker.obtain();
116 VelocityTracker vt = VelocityTracker.obtain();
132 VelocityTracker vt = VelocityTracker.obtain();
154 VelocityTracker vt = VelocityTracker.obtain();
    [all...]
  /frameworks/base/core/java/android/view/
InputQueue.java 6 * You may obtain a copy of the License at
119 Runnable finishedCallback = FinishedCallback.obtain(finishedToken);
126 Runnable finishedCallback = FinishedCallback.obtain(finishedToken);
144 public static FinishedCallback obtain(long finishedToken) { method in class:InputQueue.FinishedCallback
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalDeniedReceiver.java 6 * You may obtain a copy of the License at
33 Parcel data = Parcel.obtain();
LocalGrantedReceiver.java 6 * You may obtain a copy of the License at
33 Parcel data = Parcel.obtain();
LocalService.java 6 * You may obtain a copy of the License at
58 Parcel data = Parcel.obtain();
76 Parcel data = Parcel.obtain();
97 Parcel data = Parcel.obtain();
113 Parcel data = Parcel.obtain();
RemoteDeniedReceiver.java 6 * You may obtain a copy of the License at
33 Parcel data = Parcel.obtain();
RemoteGrantedReceiver.java 6 * You may obtain a copy of the License at
33 Parcel data = Parcel.obtain();
  /system/core/libpixelflinger/codeflinger/
texturing.cpp 7 ** You may obtain a copy of the License at
75 const int t0 = (parts.reload & 1) ? scratches.obtain() : 0;
76 const int t1 = (parts.reload & 2) ? scratches.obtain() : 0;
101 int end = scratches.obtain();
186 fragment.setTo( regs.obtain(), 0, 32, CORRUPTIBLE);
203 int dx = scratches.obtain();
376 int ydsdy = scratches.obtain();
377 int ydtdy = scratches.obtain();
453 texel.setTo(regs.obtain(), &tmu.format);
461 s.reg = scratches.obtain();
    [all...]

Completed in 680 milliseconds

1 2 3 4 5 6 7 8 91011>>