/development/tools/winscope/src/trace_collection/ |
D | proxy_client.ts | 71 const client = proxyClient; constant 77 client.setState(ProxyState.NO_PROXY); 81 !client.areVersionsCompatible( 85 client.setState(ProxyState.INVALID_VERSION); 102 client.setState(ProxyState.UNAUTH); 106 client.errorText = this.responseText; 108 client.errorText = String.fromCharCode.apply( 113 client.setState(ProxyState.ERROR, client.errorText); 118 request.open(method, client.WINSCOPE_PROXY_URL + path); 119 const lastKey = client.store.get('adb.proxyKey'); [all …]
|
/development/tools/winscope/src/viewers/viewer_input_method_clients/operations/ |
D | update_display_names.ts | 22 const client = node.findDfs((node) => node.name === 'client'); constant 23 if (client) this.updateClientName(client); 26 private updateClientName(client: UiHierarchyTreeNode) { 28 client 32 client.setDisplayName(view);
|
/development/tools/winscope/src/parsers/input_method/ |
D | hierarchy_tree_clients_factory.ts | 88 const client = new PropertiesProviderBuilder() constant 89 .setEagerProperties(this.makeClientEagerPropertiesTree(entryProto.client)) 91 this.makeClientLazyPropertiesStrategy(entryProto.client), 94 entryProto.client ? [this.AddDefaultsClientEager] : [], 100 .setLazyOperations(entryProto.client ? [this.AddDefaultsClientLazy] : []) 105 .setChildren([client]) 164 data = {client: null}; 185 .setData(clientProto ?? {client: null})
|
/development/tools/winscope/src/viewers/viewer_input_method_clients/ |
D | presenter_input_method_clients.ts | 65 const client = this.hierarchyPresenter constant 69 const curId = client 73 const packageName = client
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
D | SimpleWikiHelper.java | 22 import org.apache.http.client.HttpClient; 23 import org.apache.http.client.methods.HttpGet; 24 import org.apache.http.impl.client.DefaultHttpClient; 175 HttpClient client = new DefaultHttpClient(); in getUrlContent() local 180 HttpResponse response = client.execute(request); in getUrlContent()
|
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/ |
D | SimpleWikiHelper.java | 22 import org.apache.http.client.HttpClient; 23 import org.apache.http.client.methods.HttpGet; 24 import org.apache.http.impl.client.DefaultHttpClient; 182 HttpClient client = new DefaultHttpClient(); in getUrlContent() local 187 HttpResponse response = client.execute(request); in getUrlContent()
|
/development/samples/VirtualDeviceManager/ |
D | README.md | 10 [Client Options](#client-options) \ 21 device, which represents the client device and communicates with the 22 physical client device by sending audio and frames of the virtual displays, 24 launch apps on the virtual device, which are streamed to the client. 26 * **Client**: installed on the client device. It receives the audio and frames 29 same time, it's best to use a large screen device as a client, like a Pixel 38 * An Android device running Android 13 or newer to act as a client device. 48 Note: This example app uses an Android device as a client, but there's no such 49 general requirement. The client device, its capabilities, the connectivity layer 100 1. Build and install the Client app on the client device. [all …]
|
D | Android.bp | 35 manifest: "client/AndroidManifest.xml", 39 "client/src/**/*.java", 42 "client/res",
|
D | setup.sh | 123 -c|--client) INSTALL_HOST=false; shift ;; 216 install_app "${CLIENT_SERIAL}" "${OUT}/system/app/VdmClient/VdmClient.apk" client
|
/development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/client/ |
D | UserTest.java | 16 package com.example.android.samplesync.client; 18 import com.example.android.samplesync.client.User;
|
/development/samples/browseable/RuntimePermissionsWear/Application/src/com.example.android.wearable.runtimepermissions/ |
D | IncomingRequestPhoneService.java | 143 GoogleApiClient client = new GoogleApiClient.Builder(this) in sendMessage() local 146 client.blockingConnect(Constants.CONNECTION_TIME_OUT_MS, TimeUnit.MILLISECONDS); in sendMessage() 151 client, in sendMessage() 167 client.disconnect(); in sendMessage()
|
/development/tools/checkcolor/src/test/java/com/google/checkcolor/lint/ |
D | HardcodedColorDetectorTest.java | 21 import com.android.tools.lint.client.api.LintClient; 46 protected TestConfiguration getConfiguration(LintClient client, Project project) { in getConfiguration() argument 47 return new TestConfiguration(client, project, null) { in getConfiguration()
|
/development/tools/winscope/src/parsers/input_method/perfetto/ |
D | parser_input_method_clients_test.ts | 62 const client = assertDefined(entry.getChildByName('client')); constant 63 const properties = await client.getAllProperties();
|
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
D | ImageDownloader.java | 22 import org.apache.http.client.methods.HttpGet; 249 final AndroidHttpClient client = AndroidHttpClient.newInstance("Android"); in doInBackground() local 258 HttpResponse response = client.execute(getRequest); in doInBackground() 305 if (client != null) { in doInBackground() 306 client.close(); in doInBackground()
|
/development/tools/winscope/src/parsers/input_method/legacy/ |
D | parser_input_method_clients_test.ts | 90 const client = assertDefined(entry.getChildByName('client')); constant 91 const properties = await client.getAllProperties();
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/ |
D | NetworkUtilities.java | 17 package com.example.android.samplesync.client; 25 import org.apache.http.client.HttpClient; 26 import org.apache.http.client.entity.UrlEncodedFormEntity; 27 import org.apache.http.client.methods.HttpPost; 29 import org.apache.http.impl.client.DefaultHttpClient;
|
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/ |
D | DigitalWatchFaceUtil.java | 119 public static void fetchConfigDataMap(final GoogleApiClient client, in fetchConfigDataMap() argument 121 Wearable.NodeApi.getLocalNode(client).setResultCallback( in fetchConfigDataMap() 131 Wearable.DataApi.getDataItem(client, uri) in fetchConfigDataMap()
|
/development/samples/VirtualDeviceManager/client/src/com/example/android/vdmdemo/client/ |
D | VdmClientApplication.java | 17 package com.example.android.vdmdemo.client;
|
D | DisplayController.java | 17 package com.example.android.vdmdemo.client;
|
/development/tools/winscope/src/trace/ |
D | trace_tree_node.ts | 25 client?: any; property
|
/development/tools/checkcolor/src/main/java/com/google/checkcolor/lint/ |
D | HardcodedColorIssueRegistry.java | 19 import com.android.tools.lint.client.api.IssueRegistry;
|
/development/samples/browseable/StorageClient/ |
D | _index.jd | 8 Using the OPEN_DOCUMENT intent, a client app can access a list of Document Providers
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/ |
D | SyncAdapter.java | 19 import com.example.android.samplesync.client.NetworkUtilities; 20 import com.example.android.samplesync.client.RawContact;
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
D | MonkeySourceNetworkViews.java | 142 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance(); in getNodeByAccessibilityIds() local 143 return client.findAccessibilityNodeInfoByAccessibilityId(connectionId, windowId, viewId, in getNodeByAccessibilityIds() 149 AccessibilityInteractionClient client = AccessibilityInteractionClient.getInstance(); in getNodeByViewId() local 150 List<AccessibilityNodeInfo> infos = client.findAccessibilityNodeInfosByViewId( in getNodeByViewId()
|
/development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/ |
D | Utils.java | 176 public static Collection<String> getNodes(GoogleApiClient client) { in getNodes() argument 179 Wearable.NodeApi.getConnectedNodes(client).await(); in getNodes()
|