Searched defs:get (Results 151 - 175 of 310) sorted by relevance

1234567891011>>

/frameworks/base/nfc-extras/java/com/android/nfc_extras/
H A DNfcAdapterExtras.java75 /** get service handles */
93 public static NfcAdapterExtras get(NfcAdapter adapter) { method in class:NfcAdapterExtras
104 NfcAdapterExtras extras = sNfcExtras.get(adapter);
/frameworks/base/obex/javax/obex/
H A DClientSession.java166 public Operation get(HeaderSet header) throws IOException { method in class:ClientSession
193 /* TODO: Consider creating an interface to get the wait state.
315 /* TODO: Consider creating an interface to get the wait state.
426 * Set request inactive. Allows Put and get operation objects to tell this
476 // We are still sending the get request, send, but don't expect continue
505 // correctly, we will get a gap between each obex packet.
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSaveFragment.java65 public static SaveFragment get(FragmentManager fm) { method in class:SaveFragment
141 final DocumentsActivity activity = DocumentsActivity.get(SaveFragment.this);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumePrefs.java62 public static boolean get(Context context, String key, boolean def) { method in class:VolumePrefs
/frameworks/base/rs/java/android/renderscript/
H A DByte2.java243 * get vector length
322 * get the vector field value by index
327 public byte get(int i) { method in class:Byte2
H A DByte3.java262 * get vector length
346 * get the vector field value by index
351 public byte get(int i) { method in class:Byte3
H A DByte4.java280 * get vector length
369 * get the vector field value by index
374 public byte get(int i) { method in class:Byte4
H A DDouble4.java358 public double get(int i) { method in class:Double4
H A DFloat4.java335 * get vector length
353 * get the vector field value by index
358 public float get(int i) { method in class:Float4
H A DInt2.java297 * get vector length
376 * get the vector field value by index
381 public int get(int i) { method in class:Int2
H A DInt3.java320 * get vector length
404 * get the vector field value by index
409 public int get(int i) { method in class:Int3
H A DInt4.java343 * get vector length
432 * get the vector field value by index
437 public int get(int i) { method in class:Int4
H A DLong2.java297 * get vector length
376 * get the vector field value by index
381 public long get(int i) { method in class:Long2
H A DLong3.java320 * get vector length
404 * get the vector field value by index
409 public long get(int i) { method in class:Long3
H A DLong4.java343 * get vector length
432 * get the vector field value by index
437 public long get(int i) { method in class:Long4
H A DShort2.java300 * get vector length
379 * get the vector field value by index
384 public short get(int i) { method in class:Short2
H A DShort3.java320 * get vector length
404 * get the vector field value by index
409 public short get(int i) { method in class:Short3
H A DShort4.java343 * get vector length
432 * get the vector field value by index
437 public short get(int i) { method in class:Short4
/frameworks/base/services/core/java/com/android/server/accounts/
H A DTokenCache.java137 Evictor tokenEvictor = mTokenEvictors.get(v.token);
145 Evictor accountEvictor = mAccountEvictors.get(k.account);
157 Evictor evictor = mTokenEvictors.get(new Pair<>(accountType, token));
165 Evictor evictor = mAccountEvictors.get(account);
219 public String get(Account account, String tokenType, String packageName, byte[] sigDigest) { method in class:TokenCache
221 Value v = mCachedTokens.get(k);
/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DBatteryController.java53 public static BatteryController get(JobSchedulerService taskManagerService) { method in class:BatteryController
169 // If we get this action, the battery is discharging => it isn't plugged in so
205 final JobStatus js = mTrackedTasks.get(i);
H A DConnectivityController.java59 public static ConnectivityController get(JobSchedulerService jms) { method in class:ConnectivityController
125 final JobStatus js = mTrackedJobs.get(i);
143 final JobStatus js = mTrackedJobs.get(i);
195 final JobStatus js = mTrackedJobs.get(i);
H A DDeviceIdleJobsController.java68 public static DeviceIdleJobsController get(JobSchedulerService service) { method in class:DeviceIdleJobsController
H A DIdleController.java50 public static IdleController get(JobSchedulerService service) { method in class:IdleController
199 final JobStatus js = mTrackedTasks.get(i);
/frameworks/base/services/tests/servicestests/jni/
H A Dapf_jni.cpp47 pcap_t* get() const { return pcap_ptr; }; function in class:ScopedPcap
59 FILE* get() const { return file; }; function in class:ScopedFILE
77 if (pcap.get() == NULL) {
84 if (pcap_compile(pcap.get(), &bpf, filter.c_str(), 0, PCAP_NETMASK_UNKNOWN)) {
109 ScopedPcap bpf_pcap(pcap_fopen_offline(bpf_fp.get(), pcap_error));
110 if (bpf_pcap.get() == NULL) {
117 ScopedPcap apf_pcap(pcap_fopen_offline(apf_fp.get(), pcap_error));
118 if (apf_pcap.get() == NULL) {
125 if (pcap_compile(bpf_pcap.get(), &bpf, filter.c_str(), 0, PCAP_NETMASK_UNKNOWN)) {
131 if (pcap_setfilter(bpf_pcap.get(),
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DBroadcastInterceptingContext.java72 public Intent get() throws InterruptedException, ExecutionException { method in class:BroadcastInterceptingContext.BroadcastInterceptor
74 return get(5, TimeUnit.SECONDS);

Completed in 8407 milliseconds

1234567891011>>