Home
last modified time | relevance | path

Searched refs:call (Results 1 – 25 of 49) sorted by relevance

12

/development/build/tools/
Dsdk_repo.mk34 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)): $(3)
38 $(call dist-for-goals-with-filenametag, sdk_repo, $(call sdk-repo-pkg-zip,$(2),$(3),$(4)))
40 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)):$(notdir $(call sdk-repo-pkg-zip,$(2),$(3),$(4)))
42 $(call declare-1p-container,$(call sdk-repo-pkg-zip,$(2),$(3),$(4)),sdk_repo)
43 $(call declare-container-license-deps,$(call sdk-repo-pkg-zip,$(2),$(3),$(4)),$(3),$(PRODUCT_OUT)/:…
59 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)): $(3)
63 $(call dist-for-goals-with-filenametag, sdk_repo, $(call sdk-repo-pkg-zip,$(2),$(3),$(4)))
65 $(call sdk-repo-pkg-zip,$(2),$(3),$(4)):$(notdir $(call sdk-repo-pkg-zip,$(2),$(3),$(4)))
67 $(call declare-1p-container,$(call sdk-repo-pkg-zip,$(2),$(3),$(4)),sdk_repo)
68 $(call declare-container-license-deps,$(call sdk-repo-pkg-zip,$(2),$(3),$(4)),$(3),$(PRODUCT_OUT)/:…
[all …]
Dsdk-preprocess-files.mk1 LOCAL_PATH := $(call my-dir)
54 full_target := $(call intermediates-dir-for,JAVA_LIBRARIES,$(ANDROID_PUBLIC_EXPORTABLE_STUBS),,COMM…
55 full_src_target := $(call intermediates-dir-for,ETC,frameworks-base-api-current.srcjar)/frameworks-…
58 android_jar_intermediates := $(call intermediates-dir-for,PACKAGING,android_jar,,COMMON)
85 ALL_SDK_FILES += $(call intermediates-dir-for,JAVA_LIBRARIES,core-current-stubs-for-system-modules,…
106 $(call dist-for-goals,sdk,$(full_target):data/api-versions.xml)
110 $(eval $(call copy-one-file,$(call intermediates-dir-for,ETC,sdk-annotations.zip)/sdk-annotations.z…
112 $(call dist-for-goals,sdk,$(full_target):data/annotations.zip)
116 $(call dist-for-goals,sdk,$(full_target):system-data/api-versions.xml)
119 full_target := $(call intermediates-dir-for,ETC,sdk-annotations-system.zip)/sdk-annotations-system.…
[all …]
/development/samples/SipDemo/src/com/example/android/sip/
DWalkieTalkieActivity.java47 public SipAudioCall call = null; field in WalkieTalkieActivity
91 if (call != null) { in onDestroy()
92 call.close(); in onDestroy()
198 public void onCallEstablished(SipAudioCall call) { in initiateCall()
199 call.startAudio(); in initiateCall()
200 call.setSpeakerMode(true); in initiateCall()
201 call.toggleMute(); in initiateCall()
202 updateStatus(call); in initiateCall()
206 public void onCallEnded(SipAudioCall call) { in initiateCall()
211 call = manager.makeAudioCall(me.getUriString(), sipAddress, listener, 30); in initiateCall()
[all …]
DIncomingCallReceiver.java42 public void onRinging(SipAudioCall call, SipProfile caller) { in onReceive()
44 call.answerCall(30); in onReceive()
61 wtActivity.call = incomingCall; in onReceive()
/development/tools/winscope/src/trace_collection/
Dproxy_client.ts62 async call( method in ProxyRequest
138 await proxyRequest.call(
146 await proxyRequest.call(
160 await proxyRequest.call(
175 await proxyRequest.call(
193 await proxyRequest.call(
210 await proxyRequest.call(
222 await proxyRequest.call(
241 await proxyRequest.call(
Dproxy_connection.ts210 proxyRequest.call(
/development/tools/ota_analysis/src/services/
Dupdate_metadata_pb.js84 if (message.startBlock != null && Object.hasOwnProperty.call(message, "startBlock"))
86 if (message.numBlocks != null && Object.hasOwnProperty.call(message, "numBlocks"))
234 …ect.startBlock = options.longs === String ? $util.Long.prototype.toString.call(message.startBlock)…
239 …ject.numBlocks = options.longs === String ? $util.Long.prototype.toString.call(message.numBlocks) …
536 if (message.version != null && Object.hasOwnProperty.call(message, "version"))
538 if (message.data != null && Object.hasOwnProperty.call(message, "data"))
540 …if (message.unpaddedSignatureSize != null && Object.hasOwnProperty.call(message, "unpaddedSignatur…
683 …0, message.data.length) : options.bytes === Array ? Array.prototype.slice.call(message.data) : mes…
771 if (message.size != null && Object.hasOwnProperty.call(message, "size"))
773 if (message.hash != null && Object.hasOwnProperty.call(message, "hash"))
[all …]
/development/tools/winscope/protos/protolog/udc/
Dprotolog.proto33 /* string parameters passed to the log call. */
35 /* integer parameters passed to the log call. */
37 /* floating point parameters passed to the log call. */
39 /* boolean parameters passed to the log call. */
/development/tools/privapp_permissions/
Dprivapp_permissions.py115 if self.call('shell \'if [ -d "%s" ]; then echo True; fi\'' % src):
121 self.call('pull %s %s' % (src, dst), False, self.verbose)
124 def call(self, cmdline, getoutput=True, verbose=False): member in Adb
146 def call(self, arguments): member in Aapt
188 self.adb.call('root')
189 self.adb.call('wait-for-device')
362 privapp_dirs = self.adb.call('shell find \'/!(proc)\' \
389 self.adb.call('shell ls %s' % directory)
700 txt = aapt.call(aapt_args)
722 txt = aapt.call(aapt_args)
/development/
DCleanSpec.mk47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/CorpApp_intermediates)
/development/tools/winscope/src/parsers/operations/
Dadd_defaults.ts52 !Object.prototype.hasOwnProperty.call(this.protoType.fields, fieldName)
/development/tools/winscope/src/parsers/perfetto/
Dfake_proto_transformer.ts97 !Object.prototype.hasOwnProperty.call(messageType.fields, childName)
/development/vndk/tools/image-diff-tool/
Ddiff.py25 return subprocess.call(
199 subprocess.call(unzip_cmd)
/development/tools/
Dmonkey84 result = subprocess.call(cmd, stdout=stdout, stderr=stderr)
355 result = subprocess.call(cmd)
/development/samples/VoiceInteractionService/
DREADME.md55 …r trace value increasing as the AudioUtils.read call progresses. This value is reset after each ne…
/development/scripts/
Dupdate_crate_tests.py398 changed = (subprocess.call(['git', 'diff', '--quiet']) == 1)
408 subprocess.call(['git', 'add', 'test_mapping_config.json'],
/development/vndk/tools/sourcedr/files/
Dlist_app_shared_uid.py92 ret = subprocess.call(['apktool', 'd', 'package.apk'], cwd=app_dir)
/development/vndk/tools/vndk-compliance/
DREADME.md20 * Lets call the offending module libabc. Open libabc's Android.mk
/development/apps/ShareTest/src/com/android/sharetest/
DAdditionalContentProvider.kt62 override fun call(method: String, arg: String?, extras: Bundle?): Bundle? { in <lambda>() method in com.android.sharetest.AdditionalContentProvider
/development/host/windows/usb/winusb/
DSOURCES42 # In checked build, ATL headers call APIs that are only in atlsd.lib. To use
/development/host/windows/usb/api/
DSOURCES42 # In checked build, ATL headers call APIs that are only in atlsd.lib. To use
/development/tools/winscope/src/viewers/components/rects/
Drects_component_test.ts311 .forEach((call) => expect(call.args[0].rects.length).toEqual(1)),
/development/samples/ShortcutDemo/publisher/src/com/example/android/pm/shortcutdemo/
DShortcutPublisher.java169 public static void callApi(Context context, BooleanSupplier call) { in callApi() argument
171 if (!call.getAsBoolean()) { in callApi()
/development/tools/winscope/src/parsers/surface_flinger/legacy/
Dparser_surface_flinger.ts128 !Object.prototype.hasOwnProperty.call(
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DAsyncTask.java308 public Result call() throws Exception { in AsyncTask()

12