HomeSort by relevance Sort by last modified time
    Searched refs:call (Results 351 - 375 of 1964) sorted by null

<<11121314151617181920>>

  /build/core/
node_fns.mk 21 # $(call clear-var-list,A B C)
39 # $(call copy-var-list, PREFIX, A B)
59 # $(call move-var-list,SRC,DST,A B)
123 # $(call get-inherited-nodes,PREFIX,A B)
162 $(call uniq-word,$($(_eiv_tv)),$(INHERIT_TAG)$(i))) \
189 $(call clear-var-list, $(3))
196 $(call copy-var-list, $(1).$(2), $(3))
197 $(call clear-var-list, $(3))
200 $(call get-inherited-nodes,$(1).$(2),$(3)))
201 $(call _import-nodes-inner,$(1),$($(1).$(2).inherited),$(3)
    [all...]
dex_preopt.mk 48 $(eval _dbj_src_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,$(1),,COMMON)/javalib.jar)
55 $$(call dexpreopt-one-file,$$(PRIVATE_DBJ_JAR),$$@)
58 $$(call copy-file-to-target)
59 $$(call dexpreopt-remove-classes.dex,$$@)
66 $(foreach b,$(DEXPREOPT_BOOT_JARS_MODULES),$(eval $(call _dexpreopt-boot-jar,$(b))))
73 $(eval $(call add-dependency,$(_bdbjdp_target),$(_bdbjdp_dep))) \
74 $(eval $(call _build-dexpreopt-boot-jar-dependency-pair,$(wordlist 2,999,$(1)))))
78 $(call _build-dexpreopt-boot-jar-dependency-pair,$(DEXPREOPT_BOOT_JARS_MODULES))
81 $(eval $(call _build-dexpreopt-boot-jar-dependency))
  /external/qemu/telephony/
android_modem.c 162 ACallRec call; member in struct:AVoiceCallRec
539 return &modem->calls[index].call;
545 AVoiceCall call = NULL; local
551 /* find a valid id for this call */
556 if ( modem->calls[nn].call.id == (id+1) ) {
564 call = modem->calls + count;
565 call->call.id = id + 1;
566 call->modem = modem;
570 return call;
609 AVoiceCall call = modem->calls + nn; local
629 ACall call = &vcall->call; local
1278 ACall call = &vcall->call; local
1477 ACall call = &vcall->call; local
1517 ACall call = &vcall->call; local
1555 ACall call = &vcall->call; local
1585 ACall call = &vcall->call; local
1601 ACall call = &vcall->call; local
1625 ACall call = &vcall->call; local
1640 ACall call = &vcall->call; local
1653 ACall call = &vcall->call; local
1666 ACall call = &vcall->call; local
    [all...]
  /cts/tests/core/xml/
Android.mk 15 LOCAL_PATH:= $(call my-dir)
26 LOCAL_SRC_FILES := $(call all-java-files-under,../../../../libcore/xml/src/test/java) \
27 $(call all-java-files-under,../../../../libcore/dom/src/test) \
28 $(call all-java-files-under,../../../../libcore/junit/src/test/java/junit) \
29 $(call all-java-files-under,../../../../libcore/luni/src/test/java/org/apache/harmony/xml) \
30 $(call all-java-files-under,../../../../libcore/luni/src/test/java/tests/api/javax/xml/parsers) \
31 $(call all-java-files-under,../../../../libcore/luni/src/test/java/tests/api/org/xml/sax) \
32 $(call all-java-files-under,../../../../libcore/luni/src/test/java/tests/api/org/xml/sax/support) \
33 $(call all-java-files-under,../../../../libcore/luni/src/test/java/tests/org/w3c/dom) \
34 $(call all-java-files-under,../../../../libcore/luni/src/test/java/tests/xml)
    [all...]
  /ndk/build/core/
setup-imports.mk 25 $(call __ndk_info,ERROR: You NDK_MODULE_PATH variable contains spaces)
26 $(call __ndk_info,Please fix the error and start again.)
27 $(call __ndk_error,Aborting)
31 $(call import-init)
33 $(call import-add-path,$(__path))\
35 $(call import-add-path-optional,$(NDK_ROOT)/sources)
36 $(call import-add-path-optional,$(NDK_ROOT)/../development/ndk/sources)
prebuilt-library.mk 20 $(call assert-defined, LOCAL_BUILD_SCRIPT LOCAL_MAKEFILE LOCAL_PREBUILT_PREFIX LOCAL_PREBUILT_SUFFIX)
22 $(call check-defined-LOCAL_MODULE,$(LOCAL_BUILD_SCRIPT))
23 $(call check-LOCAL_MODULE,$(LOCAL_MAKEFILE))
24 $(call check-LOCAL_MODULE_FILENAME)
28 $(call __ndk_info,ERROR:$(LOCAL_MAKEFILE):$(LOCAL_MODULE): The LOCAL_SRC_FILES for a prebuilt static library should only contain one item))
29 $(call __ndk_error,Aborting)
34 $(call __ndk_info,ERROR:$(LOCAL_MAKEFILE):$(LOCAL_MODULE): LOCAL_SRC_FILES should point to a file ending with "$(LOCAL_PREBUILT_SUFFIX)")
35 $(call __ndk_info,The following file is unsupported: $(bad_prebuilts))
36 $(call __ndk_error,Aborting)
41 $(call __ndk_info,ERROR:$(LOCAL_MAKEFILE):$(LOCAL_MODULE): LOCAL_SRC_FILES points to a missing file
    [all...]
add-application.mk 26 $(call assert-defined, _application_mk _app)
27 $(call ndk_log,Parsing $(_application_mk))
29 $(call clear-vars, $(NDK_APP_VARS))
45 $(call __ndk_warning,NDK_DEBUG is defined to the unsupported value '$(NDK_DEBUG)', will be ignored!)
51 $(call check-required-vars,$(NDK_APP_VARS_REQUIRED),$(_application_mk))
56 APP_MODULES := $(call strip-lib-prefix,$(APP_MODULES))
74 $(call ndk_log, Found APP_PLATFORM=$(APP_PLATFORM) in $(_local_props))
77 $(call ndk_log, Defaulted to APP_PLATFORM=$(APP_PLATFORM))
85 $(call ndk_log, Adjusting APP_PLATFORM to $(APP_PLATFORM))
93 $(call ndk_log,Application $(_name) targets unknown platform '$(_bad_platform)'
    [all...]
  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 46 private ArrayList<Call> mCallList;
47 private ArrayList<Call> mSwitchList;
93 Call readCall(MappedByteBuffer buffer, Call call) {
117 if (call != null) {
118 call.set(threadId, methodData, time, methodAction);
120 call = new Call(threadId, methodData, time, methodAction);
122 return call;
183 Call call = new Call(); local
242 Call call = readCall(buffer, null); local
513 Call call = new Call(threadData.getId(), mTopLevel, local
570 Call call = (Call) record.block; local
    [all...]
  /build/core/combo/
HOST_darwin-x86.mk 53 -include $(call select-android-config-h,darwin-x86)
65 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
66 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
67 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
80 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
82 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
83 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
SimulatedGsmCallState.java 34 DIALING(2), // MO call only
35 ALERTING(3), // MO call only
36 INCOMING(4), // MT call only
37 WAITING(5); // MT call only
184 CallInfo call = calls[i]; local
186 if (call == null && empty < 0) {
188 } else if (call != null
189 && (call.state == CallInfo.State.INCOMING
190 || call.state == CallInfo.State.WAITING)
195 } else if (call != null)
221 CallInfo call = calls[i]; local
247 CallInfo call = calls[i]; local
284 CallInfo call = calls[i]; local
296 CallInfo call = calls[i]; local
321 CallInfo call = calls[i]; local
343 CallInfo call = calls[i]; local
360 CallInfo call = calls[i]; local
379 CallInfo call = calls[i]; local
658 CallInfo call; local
774 CallInfo call = calls[i]; local
    [all...]
  /external/webkit/JavaScriptCore/assembler/
LinkBuffer.h 48 // * The return address of a Call may be acquired.
57 typedef MacroAssembler::Call Call;
82 void link(Call call, FunctionPtr function)
84 ASSERT(call.isFlagSet(Call::Linkable));
85 MacroAssembler::linkCall(code(), call, function); local
111 CodeLocationCall locationOf(Call call)
    [all...]
  /ndk/toolchains/arm-linux-androideabi-4.4.3/
setup.mk 88 $(eval __arm_sources := $(call get-src-files-with-tag,arm)) \
89 $(eval __thumb_sources := $(call get-src-files-without-tag,arm)) \
90 $(eval __debug_sources := $(call get-src-files-with-tag,debug)) \
91 $(eval __release_sources := $(call get-src-files-without-tag,debug)) \
92 $(call set-src-files-target-cflags, \
93 $(call set_intersection,$(__arm_sources),$(__debug_sources)), \
95 $(call set-src-files-target-cflags,\
96 $(call set_intersection,$(__arm_sources),$(__release_sources)),\
98 $(call set-src-files-target-cflags,\
99 $(call set_intersection,$(__arm_sources),$(__debug_sources)),
    [all...]
  /development/samples/SipDemo/src/com/example/android/sip/
IncomingCallReceiver.java 30 * Processes the incoming call, answers it, and hands it over to the
42 public void onRinging(SipAudioCall call, SipProfile caller) {
44 call.answerCall(30);
61 wtActivity.call = incomingCall;
  /external/stlport/
Makefile 15 +$(call doinsubdirs,${SUBDIRS})
18 +$(call doinsubdirs,build/test/unit)
21 +$(call doinsubdirs,${SUBDIRS})
  /external/webkit/WebKit/chromium/src/js/
InjectDispatch.js 41 * @param {string} functionName Function to call
42 * @param {string} json_args JSON-serialized call parameters.
43 * @return {string} JSON-serialized result of the dispatched call.
73 * We serialize the call and send it to the client over the IPC
78 var args = Array.prototype.slice.call(arguments);
104 var call = JSON.stringify(args); variable
105 DevToolsAgentHost.dispatch(call);
  /hardware/msm7k/
Android.mk 23 include $(call all-named-subdir-makefiles,$(msm7k_dirs))
26 include $(call all-named-subdir-makefiles,$(qsd8k_dirs))
29 include $(call all-named-subdir-makefiles,$(msm7x30_dirs))
  /bionic/libc/kernel/arch-x86/asm/xen/
hypercall.h 6 *** call into the kernel available to libc. It contains only constants,
22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }
    [all...]
  /development/ndk/platforms/android-5/arch-x86/include/asm/xen/
hypercall.h 6 *** call into the kernel available to libc. It contains only constants,
22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }
    [all...]
  /development/samples/ApiDemos/
Android.mk 1 LOCAL_PATH:= $(call my-dir)
7 LOCAL_SRC_FILES := $(call all-java-files-under, src)
20 include $(call all-makefiles-under,$(LOCAL_PATH))
  /external/bluetooth/bluez/plugins/
hal.c 40 static void formfactor_reply(DBusPendingCall *call, void *user_data)
47 reply = dbus_pending_call_steal_reply(call);
89 DBusPendingCall *call; local
109 &call, -1) == FALSE) {
116 dbus_pending_call_set_notify(call, formfactor_reply, adapter, NULL);
118 dbus_pending_call_unref(call);
  /external/dbus/bus/
Android.mk 1 LOCAL_PATH:= $(call my-dir)
5 $(call include-path-for, dbus) \
6 $(call include-path-for, dbus)/dbus \
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/
call-001.js 22 * SUMMARY: Applying Function.prototype.call to the Function object itself
25 * ECMA-262 15.3.4.4 Function.prototype.call (thisArg [,arg1 [,arg2,?] ] )
30 * Function.call(obj, "print(this)") is equivalent to invoking
34 * (which we'll call F) which will print the value of the this that will be
45 var summary = 'Applying Function.prototype.call to the Function object itself';
62 f = Function.call(self, 'return cnHello');
63 g = Function.call(objTEST, 'return cnHello');
76 f = Function.call(self, 'return this.toString()');
77 g = Function.call(objTEST, 'return this.toString()');
90 f = Function.call(self, 'return this.color')
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/xen/
hypercall.h 6 *** call into the kernel available to libc. It contains only constants,
22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/xen/
hypercall.h 6 *** call into the kernel available to libc. It contains only constants,
22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1) : "1" ((long)(a1)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; })
26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (__res), "=b" (__ign1), "=c" (__ign2) : "1" ((long)(a1)), "2" ((long)(a2)), [call] "m" (hypercall_page[__HYPERVISOR_##name]) : "memory" ); (type)__res; }
    [all...]
  /bionic/libc/arch-x86/bionic/
crtend_so.S 18 * call it, otherwise we're done. We use %esi since it's callee saved.
24 call *%eax
34 call __bionic_call_ctors

Completed in 402 milliseconds

<<11121314151617181920>>