Searched defs:client (Results 1 - 13 of 13) sorted by relevance

/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DHttpClientFactory.java25 import org.apache.http.client.HttpClient;
34 * Constructs {@link HttpClient} instances and isolates client code from API
43 * @return the client
52 * @return the client
62 HttpClient client = (HttpClient) instance;
65 HttpParams params = client.getParams();
75 return client;
90 public static void close(HttpClient client) { argument
94 Class<?> clazz = client.getClass();
96 method.invoke(client, (Objec
[all...]
/packages/apps/Nfc/tests/src/com/android/nfc/
H A DMockLlcpSocket.java39 throw new UnsupportedOperationException("Use MockLlcpSocket.bind(client, server)");
71 public static void bind(MockLlcpSocket client, MockLlcpSocket server) { argument
72 client.mPairedSocket = server;
73 server.mPairedSocket = client;
/packages/apps/Browser/src/com/android/browser/
H A DBrowserWebView.java82 public void setWebChromeClient(WebChromeClient client) { argument
83 mWebChromeClient = client;
84 super.setWebChromeClient(client);
92 public void setWebViewClient(WebViewClient client) { argument
93 mWebViewClient = client;
94 super.setWebViewClient(client);
H A DTab.java569 * Displays client certificate request to the user.
1035 SubWindowClient(WebViewClient client, WebViewController controller) { argument
1036 mClient = client;
1099 SubWindowChromeClient(WebChromeClient client) { argument
1100 mClient = client;
/packages/apps/Exchange/src/com/android/exchange/
H A DEasResponse.java28 import org.apache.http.client.HttpClient;
29 import org.apache.http.client.methods.HttpUriRequest;
80 EmailClientConnectionManager connManager, HttpClient client, HttpUriRequest request)
83 final HttpResponse response = client.execute(request);
79 fromHttpRequest( EmailClientConnectionManager connManager, HttpClient client, HttpUriRequest request) argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DVCardService.java324 final CustomMediaScannerConnectionClient client =
326 mRemainingScannerConnections.add(client);
327 client.start();
331 CustomMediaScannerConnectionClient client) {
335 mRemainingScannerConnections.remove(client);
330 removeConnectionClient( CustomMediaScannerConnectionClient client) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DBinaryDictionaryFileDumper.java90 // The path fragment to append after the client ID for dictionary info requests.
92 // The path fragment to append after the client ID for dictionary datafile requests.
94 // The path fragment to append after the client ID for updating the metadata URI.
123 * @param contentProviderClient the instance of content provider client
127 * @throws RemoteException if the client can't be contacted
151 final ContentProviderClient client = context.getContentResolver().
153 if (null == client) return Collections.<WordListInfo>emptyList();
156 final Uri.Builder builder = getContentUriBuilderForType(clientId, client,
166 cursor = client.query(queryUri, DICTIONARY_PROJECTION, null, null, null);
168 reinitializeClientRecordInDictionaryContentProvider(context, client, clientI
491 reinitializeClientRecordInDictionaryContentProvider(final Context context, final ContentProviderClient client, final String clientId) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DAdvertiseManager.java97 * @param client Advertise client.
99 void startAdvertising(AdvertiseClient client) { argument
100 if (client == null) {
105 message.obj = client;
112 void stopAdvertising(AdvertiseClient client) { argument
113 if (client == null) {
118 message.obj = client;
125 * @param clientIf Identifier for the client.
141 AdvertiseClient client
184 handleStartAdvertising(AdvertiseClient client) argument
206 handleStopAdvertising(AdvertiseClient client) argument
268 startAdverising(AdvertiseClient client) argument
279 startMultiAdvertising(AdvertiseClient client) argument
301 startSingleAdvertising(AdvertiseClient client) argument
312 stopAdvertising(AdvertiseClient client) argument
339 enableAdvertising(AdvertiseClient client) argument
360 setAdvertisingData(AdvertiseClient client, AdvertiseData data, boolean isScanResponse) argument
456 getAdvertisingEventType(AdvertiseClient client) argument
[all...]
H A DScanManager.java131 for (ScanClient client : mBatchClients) {
132 if (client.settings.getScanResultType() == ScanSettings.SCAN_RESULT_TYPE_FULL) {
133 fullBatchClients.add(client);
139 void startScan(ScanClient client) { argument
140 sendMessage(MSG_START_BLE_SCAN, client);
143 void stopScan(ScanClient client) { argument
144 sendMessage(MSG_STOP_BLE_SCAN, client);
147 void flushBatchScanResults(ScanClient client) { argument
148 sendMessage(MSG_FLUSH_BATCH_RESULTS, client);
159 private void sendMessage(int what, ScanClient client) { argument
197 handleStartScan(ScanClient client) argument
223 handleStopScan(ScanClient client) argument
240 handleFlushBatchResults(ScanClient client) argument
248 isBatchClient(ScanClient client) argument
257 isScanSupported(ScanClient client) argument
448 startRegularScan(ScanClient client) argument
472 startBatchScan(ScanClient client) argument
483 isOpportunisticScanClient(ScanClient client) argument
487 resetBatchScan(ScanClient client) argument
599 stopRegularScan(ScanClient client) argument
635 stopBatchScan(ScanClient client) argument
683 configureScanFilters(ScanClient client) argument
740 shouldAddAllPassFilterToController(ScanClient client, int deliveryMode) argument
811 shouldUseAllPassFilter(ScanClient client) argument
879 configureFilterParamter(int clientIf, ScanClient client, int featureSelection, int filterIndex, int numOfTrackingEntries) argument
897 getDeliveryMode(ScanClient client) argument
[all...]
H A DGattService.java231 if (DBG) Log.d(TAG, "Binder is dead - unregistering client (" + mAppIf + ")!");
234 ScanClient client = new ScanClient(mAppIf, false);
235 client.appDied = true;
236 stopScan(client);
238 AdvertiseClient client = new AdvertiseClient(mAppIf);
239 client.appDied = true;
240 stopMultiAdvertising(client);
245 for (ScanClient client : mScanManager.getRegularScanQueue()) {
246 if (client.clientIf == clientIf) {
250 for (ScanClient client
641 hasScanResultPermission(final ScanClient client) argument
654 matchesFilters(ScanClient client, ScanResult scanResult) argument
1049 deliverBatchScan(ScanClient client, Set<ScanResult> allResults) argument
1397 stopScan(ScanClient client) argument
1466 stopMultiAdvertising(AdvertiseClient client) argument
[all...]
/packages/apps/Nfc/nci/jni/
H A DPeerToPeer.cpp539 sp<P2pClient> client = NULL; local
544 mClients [i] = client = new P2pClient();
554 if (client == NULL)
560 ALOGD ("%s: pClient: 0x%p assigned for client jniHandle: %u", fn, client.get(), jniHandle);
570 ALOGD ("%s: exit; new client jniHandle: %u NFA Handle: 0x%04x", fn, jniHandle, client->mClientConn->mNfaConnHandle);
575 ALOGE ("%s: FAILED; new client jniHandle: %u NFA Handle: 0x%04x", fn, jniHandle, client->mClientConn->mNfaConnHandle);
597 // If the connection is a for a client, delet
[all...]
/packages/apps/Terminal/src/com/android/terminal/
H A DTerminal.java140 public void setClient(TerminalClient client) { argument
141 mClient = client;
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 3764 milliseconds