Searched defs:get (Results 26 - 50 of 142) sorted by last modified time

123456

/frameworks/native/include/utils/
H A DStrongPointer.h93 inline T* get() const { return m_ptr; } function in class:android::sp
213 return printStrongPointer(to, val.get());
H A DUniquePtr.h71 T* get() const { return mPtr; } function in class:UniquePtr
119 T* get() const { return mPtr; } function in class:UniquePtr
/frameworks/native/libs/utils/
H A DBlobCache.cpp133 size_t BlobCache::get(const void* key, size_t keySize, void* value, function in class:android::BlobCache
136 ALOGV("get: not searching because the key is too large: %d (limit %d)",
144 ALOGV("get: no cache entry found for key of size %d", keySize);
153 ALOGV("get: copying %d bytes to caller's buffer", valueBlobSize);
156 ALOGV("get: caller's buffer is too small for value: %d (needs %d)",
/frameworks/native/opengl/libagl/
H A Dcontext.h630 static inline ogles_context_t* get() { function in struct:android::gl::ogles_context_t
/frameworks/native/opengl/libs/EGL/
H A Degl_cache.cpp63 egl_cache_t::get()->setBlob(key, keySize, value, valueSize);
68 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize);
84 egl_cache_t* egl_cache_t::get() { function in class:android::egl_cache_t
109 "but unable to get eglSetBlobCacheFuncsANDROID");
155 egl_cache_t* c = egl_cache_t::get();
185 return bc->get(key, keySize, value, valueSize);
H A Degl_display.cpp81 egl_cache_t::get()->terminate();
84 egl_display_t* egl_display_t::get(EGLDisplay dpy) { function in class:android::egl_display_t
121 // get our driver loader
192 // get the query-strings for this display for each implementation
240 egl_cache_t::get()->initialize(this);
298 // Reset the extension string since it will be regenerated if we get
412 // we don't want to get into a state where we can't wake up.
H A Degl_display.h87 static egl_display_t* get(EGLDisplay dpy);
224 const egl_display_t* get() const { return mDpy; } function in class:android::egl_display_ptr
225 egl_display_t* get() { return mDpy; } function in class:android::egl_display_ptr
239 return egl_display_ptr(egl_display_t::get(dpy));
245 return egl_display_t::get(dpy);
H A Degl_object.cpp58 bool egl_object_t::get(egl_display_t const* display, egl_object_t* object) { function in class:android::egl_object_t
77 ANativeWindow* const window = win.get();
H A Degl_object.h60 static bool get(egl_display_t const* display, egl_object_t* object);
73 if (o && egl_object_t::get(display, native)) {
77 inline N* get() { function in class:android::egl_object_t::LocalRef
/frameworks/compile/mclinker/include/mcld/Support/
H A DTargetRegistry.h96 return TargetLDBackendCtorFn(*get(), Triple);
108 const llvm::Target* get() const function in class:mcld::Target
/frameworks/base/tests/touchlag/
H A Dtouchlag.cpp202 void get(int lag, int* x, int* y) { function in struct:Queue
275 // get touch events
278 queue.get(lag, &lag_x, &lag_y);
/frameworks/base/tools/aidl/
H A Dgenerate_java_rpc.cpp345 Method* get = new Method; local
346 get->modifiers = PUBLIC;
347 get->returnType = RPC_ENDPOINT_INFO_TYPE;
348 get->name = "getEndpointInfo";
349 get->statements = new StatementBlock;
350 this->elements.push_back(get);
352 get->statements->Add(new ReturnStatement(this->endpoint));
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLruCache.java53 * if (cache.get(key) == null) {
59 * value of null from {@link #get}, {@link #put} or {@link #remove} is
115 public final V get(K key) { method in class:LruCache
122 mapValue = map.get(key);
211 // get the last item in the linked list.
341 * Returns the number of times {@link #get} returned a value that was
349 * Returns the number of times {@link #get} returned null or required a new
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java72 public E get(int key) { method in class:SparseWeakArray
73 return get(key, null);
80 public E get(int key, E valueIfKeyNotFound) { method in class:SparseWeakArray
83 if (i < 0 || mValues[i] == DELETED || mValues[i].get() == null) {
86 return (E) mValues[i].get();
132 if (val != DELETED && val.get() != null) {
171 if (i < mSize && (mValues[i] == DELETED || mValues[i].get() == null)) {
245 return (E) mValues[index].get();
288 if (mValues[i].get() == value)
345 if (mValues[i].get()
[all...]
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/dataclass/
H A DOuterClass.java31 // Outer.get returns 1 + a + b
34 public int get(int a, long b) { method in class:OuterClass
42 // Inner.get returns 2 + 1 + a + b
43 public int get(int a, long b) { method in class:OuterClass.InnerClass
H A DOuterClass_Delegate.java25 // The delegate override of Outer.get returns 4 + a + b
26 public static int get(OuterClass instance, int a, long b) { method in class:OuterClass_Delegate
H A DOuterClass_InnerClass_Delegate.java26 // The delegate override of Inner.get return 6 + a + b
27 public static int get(OuterClass outer, InnerClass inner, int a, long b) { method in class:OuterClass_InnerClass_Delegate
/frameworks/base/voip/java/android/net/sip/
H A DSimpleSessionDescription.java292 return super.get("a=fmtp:" + format, ' ');
335 return super.get("a=rtpmap:" + type, ' ');
343 return super.get("a=fmtp:" + type, ' ');
402 String address = get("c", '=');
430 String encryption = get("k", '=');
442 String encryption = get("k", '=');
471 String value = get("b=" + type, ':');
501 return get("a=" + name, ':');
571 String line = mLines.get(i);
603 private String get(Strin method in class:SimpleSessionDescription.Fields
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDeviceList.java71 WifiP2pDevice d = mDevices.get(device.deviceAddress);
89 WifiP2pDevice d = mDevices.get(deviceAddress);
98 WifiP2pDevice d = mDevices.get(deviceAddress);
105 public WifiP2pDevice get(String deviceAddress) { method in class:WifiP2pDeviceList
108 return mDevices.get(deviceAddress);
134 WifiP2pDevice device = mDevices.get(deviceAddress);
/frameworks/base/sax/java/android/sax/
H A DChildren.java65 Element get(String uri, String localName) { method in class:Children
/frameworks/base/services/java/com/android/server/
H A DAttributeCache.java97 public Entry get(String packageName, int resId, int[] styleable) { method in class:AttributeCache
99 Package pkg = mPackages.get(packageName);
103 map = pkg.mMap.get(resId);
105 ent = map.get(styleable);
H A DProcessMap.java27 public E get(String name, int uid) { method in class:ProcessMap
28 SparseArray<E> uids = mMap.get(name);
30 return uids.get(uid);
34 SparseArray<E> uids = mMap.get(name);
44 SparseArray<E> uids = mMap.get(name);
/frameworks/base/services/java/com/android/server/am/
H A DAppErrorResult.java29 public int get() { method in class:AppErrorResult
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DBroadcastInterceptingContext.java70 public Intent get() throws InterruptedException, ExecutionException { method in class:BroadcastInterceptingContext.BroadcastInterceptor
72 return get(5, TimeUnit.SECONDS);
H A DNetworkPolicyManagerServiceTest.java263 backgroundChanged.get();
274 idle.get();
281 idle.get();
289 idle.get();
297 idle.get();
303 idle.get();
309 idle.get();
321 future.get();
330 future.get();
340 future.get();
912 public T get() throws InterruptedException, ExecutionException { method in class:NetworkPolicyManagerServiceTest.TestAbstractFuture
941 public Void get() throws InterruptedException, ExecutionException { method in class:NetworkPolicyManagerServiceTest.IdleFuture
[all...]

Completed in 325 milliseconds

123456