HomeSort by relevance Sort by last modified time
    Searched defs:obtain (Results 51 - 75 of 282) sorted by null

1 23 4 5 6 7 8 91011>>

  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
VehicleObjectPool.h 6 * You may obtain a copy of the License at
73 * This class is thread-safe. Concurrent calls to #obtain(...) method from
74 * multiple threads is OK, also client can obtain an object in one thread and
84 virtual recyclable_ptr<T> obtain() { function in class:android::hardware::automotive::vehicle::V2_0::ObjectPool
133 * It has only one overloaded public method - obtain(...), users must call this
147 * This class is thread-safe. Users can obtain an object in one thread and pass
153 * auto v = pool.obtain(VehiclePropertyType::INT32);
170 * will be stored in the pool. If users tries to obtain value with vector
179 RecyclableType obtain(VehiclePropertyType type);
181 RecyclableType obtain(VehiclePropertyType type, size_t vecSize)
208 RecyclableType obtain() { function in class:android::hardware::automotive::vehicle::V2_0::VehiclePropValuePool::InternalPool
    [all...]
  /cts/hostsidetests/devicepolicy/app/LauncherTestsSupport/src/com/android/cts/launchertests/support/
LauncherCallbackTestsService.java 5 * You may obtain a copy of the License at
92 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
100 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
108 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
116 msg.replyTo.send(Message.obtain(null, MSG_RESULT,
  /cts/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityEventTest.java 6 * You may obtain a copy of the License at
42 AccessibilityEvent sentEvent = AccessibilityEvent.obtain();
46 Parcel parcel = Parcel.obtain();
62 AccessibilityEvent firstEvent = AccessibilityEvent.obtain();
64 AccessibilityEvent secondEvent = AccessibilityEvent.obtain();
73 // obtain and populate an event
74 AccessibilityEvent populatedEvent = AccessibilityEvent.obtain();
77 // recycle and obtain the same recycled instance
79 AccessibilityEvent recycledEvent = AccessibilityEvent.obtain();
127 AccessibilityEvent event = AccessibilityEvent.obtain();
    [all...]
AccessibilityManagerTest.java 6 * You may obtain a copy of the License at
235 mAccessibilityManager.sendAccessibilityEvent(AccessibilityEvent.obtain(
  /cts/tests/framework/base/windowmanager/src/android/server/wm/
AlertWindowsImportanceTests.java 6 * You may obtain a copy of the License at
108 mService.send(Message.obtain(null, AlertWindowService.MSG_REMOVE_ALL_ALERT_WINDOWS));
157 mService.send(Message.obtain(null, AlertWindowService.MSG_ADD_ALERT_WINDOW));
165 mService.send(Message.obtain(null, AlertWindowService.MSG_REMOVE_ALERT_WINDOW));
  /cts/tests/tests/hardware/src/android/hardware/input/cts/tests/
InputTestCase.java 6 * You may obtain a copy of the License at
223 mMotions.put(MotionEvent.obtain(ev));
  /cts/tests/tests/security/src/android/security/cts/
MotionEventTest.java 6 * You may obtain a copy of the License at
184 MotionEvent event = MotionEvent.obtain(downTime, eventTime, action, x, y, 0);
199 mOutsideEvents.add(MotionEvent.obtain(e));
  /cts/tests/tests/telephony/src/android/telephony/embms/cts/
MbmsDownloadTestBase.java 6 * You may obtain a copy of the License at
63 SomeArgs args = SomeArgs.obtain();
73 SomeArgs args = SomeArgs.obtain();
80 mMiddlewareReadyCalls.add(SomeArgs.obtain());
MbmsStreamingTestBase.java 42 SomeArgs args = SomeArgs.obtain();
50 SomeArgs args = SomeArgs.obtain();
57 mMiddlewareReadyCalls.add(SomeArgs.obtain());
  /cts/tests/tests/uidisolation/src/android/uidisolation/cts/
PermissionTestService.java 6 * You may obtain a copy of the License at
108 mClient.send(Message.obtain(null, MSG_NOTIFY_TEST_FAILURE, failingTest, 0, null));
116 mClient.send(Message.obtain(null, MSG_NOTIFY_TEST_SUCCESS));
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifResourceDecoder.java 58 final GifHeaderParser parser = parserPool.obtain(data);
59 final GifDecoder decoder = decoderPool.obtain(provider);
120 public synchronized GifDecoder obtain(GifDecoder.BitmapProvider bitmapProvider) { method in class:GifResourceDecoder.GifDecoderPool
138 public synchronized GifHeaderParser obtain(byte[] data) { method in class:GifResourceDecoder.GifHeaderParserPool
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAccessibilityEvent.java 47 return obtain(orderedInstances.get(source.readInt()).mEvent);
56 public static AccessibilityEvent obtain(AccessibilityEvent event) { method in class:ShadowAccessibilityEvent
68 public static AccessibilityEvent obtain(int eventType) { method in class:ShadowAccessibilityEvent
85 public static AccessibilityEvent obtain() { method in class:ShadowAccessibilityEvent
86 return obtain(0);
90 * Check for leaked objects that were {@code obtain}ed but never {@code recycle}d.
91 * @param printUnrecycledEventsToSystemErr - if true, stack traces of calls to {@code obtain}
ShadowAccessibilityWindowInfo.java 55 public static AccessibilityWindowInfo obtain() { method in class:ShadowAccessibilityWindowInfo
64 public static AccessibilityWindowInfo obtain(AccessibilityWindowInfo window) { method in class:ShadowAccessibilityWindowInfo
99 * Check for leaked objects that were {@code obtain}ed but never
103 * to {@code obtain} that lack matching calls to {@code recycle} are
187 return (rootNode == null) ? null : AccessibilityNodeInfo.obtain(rootNode);
ShadowMotionEvent.java 26 public static MotionEvent obtain(long downTime, long eventTime, int action, float x, float y, int metaState) { method in class:ShadowMotionEvent
44 public static MotionEvent obtain(MotionEvent motionEvent) { method in class:ShadowMotionEvent
45 return obtain(motionEvent.getDownTime(), motionEvent.getEventTime(), motionEvent.getAction(), motionEvent.getX(), motionEvent.getY(), motionEvent.getMetaState());
  /frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
RemoteControlClientCompat.java 6 * You may obtain a copy of the License at
41 public static RemoteControlClientCompat obtain(Context context, Object rcc) { method in class:RemoteControlClientCompat
  /frameworks/base/apct-tests/perftests/core/src/android/os/
ParcelPerfTest.java 5 * use this file except in compliance with the License. You may obtain a copy of
44 mParcel = Parcel.obtain();
166 Parcel.obtain();
171 Parcel.obtain().recycle();
201 Parcel p = Parcel.obtain();
220 Parcel p = Parcel.obtain();
  /frameworks/base/core/java/android/app/servertransaction/
ClientTransaction.java 6 * You may obtain a copy of the License at
137 /** Obtain an instance initialized with provided params. */
138 public static ClientTransaction obtain(IApplicationThread client, IBinder activityToken) { method in class:ClientTransaction
139 ClientTransaction instance = ObjectPool.obtain(ClientTransaction.class);
LaunchActivityItem.java 6 * You may obtain a copy of the License at
87 /** Obtain an instance initialized with provided params. */
88 public static LaunchActivityItem obtain(Intent intent, int ident, ActivityInfo info, method in class:LaunchActivityItem
93 LaunchActivityItem instance = ObjectPool.obtain(LaunchActivityItem.class);
  /frameworks/base/core/java/android/os/
Message.java 6 * You may obtain a copy of the License at
30 * one of these is to call {@link #obtain Message.obtain()} or one of the
126 public static Message obtain() { method in class:Message
141 * Same as {@link #obtain()}, but copies the values of an existing
146 public static Message obtain(Message orig) { method in class:Message
147 Message m = obtain();
164 * Same as {@link #obtain()}, but sets the value for the <em>target</em> member on the Message returned.
168 public static Message obtain(Handler h) { method in class:Message
169 Message m = obtain();
182 public static Message obtain(Handler h, Runnable callback) { method in class:Message
197 public static Message obtain(Handler h, int what) { method in class:Message
213 public static Message obtain(Handler h, int what, Object obj) { method in class:Message
232 public static Message obtain(Handler h, int what, int arg1, int arg2) { method in class:Message
253 public static Message obtain(Handler h, int what, method in class:Message
    [all...]
  /frameworks/base/core/java/android/view/
DisplayListCanvas.java 6 * You may obtain a copy of the License at
51 static DisplayListCanvas obtain(@NonNull RenderNode node, int width, int height) { method in class:DisplayListCanvas
DragEvent.java 6 * You may obtain a copy of the License at
286 static DragEvent obtain() { method in class:DragEvent
287 return DragEvent.obtain(0, 0f, 0f, null, null, null, null, false);
291 public static DragEvent obtain(int action, float x, float y, Object localState, method in class:DragEvent
316 public static DragEvent obtain(DragEvent source) { method in class:DragEvent
317 return obtain(source.mAction, source.mX, source.mY, source.mLocalState,
530 DragEvent event = DragEvent.obtain();
VelocityTracker.java 6 * You may obtain a copy of the License at
25 * Use {@link #obtain} to retrieve a new instance of the class when you are going
57 static public VelocityTracker obtain() { method in class:VelocityTracker
71 public static VelocityTracker obtain(String strategy) { method in class:VelocityTracker
73 return obtain();
  /frameworks/base/graphics/java/android/graphics/
Region.java 6 * You may obtain a copy of the License at
307 public static Region obtain() { method in class:Region
319 public static Region obtain(Region other) { method in class:Region
320 Region region = obtain();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/charging/
WirelessChargingAnimation.java 6 * You may obtain a copy of the License at
162 mHandler.sendMessageDelayed(Message.obtain(mHandler, HIDE), duration);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
HumanInteractionClassifier.java 6 * You may obtain a copy of the License at
134 mBufferedEvents.add(MotionEvent.obtain(event));

Completed in 1751 milliseconds

1 23 4 5 6 7 8 91011>>