HomeSort by relevance Sort by last modified time
    Searched full:caller (Results 76 - 100 of 5828) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/test/DebugInfo/
inline-no-debug-info.ll 7 ; void caller() { callee(); }
11 ; CHECK-LABEL: @caller(
19 ; The remaining instruction from the caller.
22 ; Debug location of the code in caller() and of the inlined code that did not
46 define void @caller() #0 {
62 !4 = !MDSubprogram(name: "caller", line: 4, isLocal: false, isDefinition: true, virtualIndex: 6, isOptimized: true, scopeLine: 4, file: !1, scope: !5, type: !6, function: void ()* @caller, variables: !2)
  /packages/apps/InCallUI/res/layout/
caller_in_conference.xml 26 <!-- Caller information -->
46 <!-- Name or number of this caller -->
56 <!-- Number of this caller if name is supplied above -->
86 </LinearLayout> <!-- End of caller number -->
88 </LinearLayout> <!-- End of caller information -->
92 <!-- "Separate" (i.e. "go private") button for this caller -->
103 <!-- "Disconnect" button which terminates the connection with this caller. -->
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailPermissions.java 59 * Checks that the caller has permissions to access its own voicemails.
61 * @throws SecurityException if the caller does not have the voicemail source permission.
65 throw new SecurityException("The caller must have permission: " +
71 * Checks that the caller has permissions to read ALL voicemails.
73 * @throws SecurityException if the caller does not have the voicemail source permission.
77 throw new SecurityException(String.format("The caller must be the default or system "
85 throw new SecurityException(String.format("The caller must be the default or system "
  /frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
VoiceInteractionManagerService.java 447 "Caller is not the current voice interaction service");
449 final long caller = Binder.clearCallingIdentity(); local
453 Binder.restoreCallingIdentity(caller);
466 final long caller = Binder.clearCallingIdentity(); local
470 Binder.restoreCallingIdentity(caller);
482 final long caller = Binder.clearCallingIdentity(); local
486 Binder.restoreCallingIdentity(caller);
498 final long caller = Binder.clearCallingIdentity(); local
502 Binder.restoreCallingIdentity(caller);
516 final long caller = Binder.clearCallingIdentity() local
533 final long caller = Binder.clearCallingIdentity(); local
549 final long caller = Binder.clearCallingIdentity(); local
565 final long caller = Binder.clearCallingIdentity(); local
582 final long caller = Binder.clearCallingIdentity(); local
599 final long caller = Binder.clearCallingIdentity(); local
617 final long caller = Binder.clearCallingIdentity(); local
637 final long caller = Binder.clearCallingIdentity(); local
652 final long caller = Binder.clearCallingIdentity(); local
680 final long caller = Binder.clearCallingIdentity(); local
715 final long caller = Binder.clearCallingIdentity(); local
735 final long caller = Binder.clearCallingIdentity(); local
762 final long caller = Binder.clearCallingIdentity(); local
792 final long caller = Binder.clearCallingIdentity(); local
818 final long caller = Binder.clearCallingIdentity(); local
838 final long caller = Binder.clearCallingIdentity(); local
862 final long caller = Binder.clearCallingIdentity(); local
903 final long caller = Binder.clearCallingIdentity(); local
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 47 STATISTIC(NumCallerCallersAnalyzed, "Number of caller-callers analyzed");
89 /// calling function, then bump up the caller's stack protection level.
90 static void AdjustCallerSSPLevel(Function *Caller, Function *Callee) {
97 AttributeSet OldSSPAttr = AttributeSet::get(Caller->getContext(),
102 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr);
103 Caller->addFnAttr(Attribute::StackProtectReq);
105 !Caller->hasFnAttribute(Attribute::StackProtectReq)) {
106 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr);
107 Caller->addFnAttr(Attribute::StackProtectStrong);
109 !Caller->hasFnAttribute(Attribute::StackProtectReq) &
    [all...]
  /external/emma/core/java12/com/vladium/util/
ClassLoadContext.java 24 * Returns the class representing the caller of {@link ClassLoaderResolver}
25 * API. Can be used to retrieve the caller's classloader etc (which may be
26 * different from the ClassLoaderResolver's own classloader) ['null' if caller
43 * @param caller [can be null]
45 ClassLoadContext (final Class caller)
47 m_caller = caller;
  /art/compiler/dex/quick/x86/
x86_lir.h 28 * making it caller save places a burden on up-calls to save/restore the callee save register,
30 * caller save and making it callee save places a burden on down-calls to save/restore the callee
31 * save register. For these reasons we aim to match native conventions for caller and callee save.
37 * r0/eax: caller | caller | caller, Method*, scratch, return value | caller, scratch, return value
38 * r1/ecx: caller | caller, arg4 | caller, arg1, scratch | caller, arg3, scratc
    [all...]
  /bionic/libc/arch-x86/bionic/
syscall.S 4 * %eax: system call number - caller save
6 * %ecx: arg1 - caller save
7 * %edx: arg2 - caller save
  /external/llvm/test/Transforms/Inline/
recursive.ll 17 ; CHECK-LABEL: define i32 @caller(
21 define i32 @caller(i32 %param) {
28 %r = call i32 @caller(i32 %t)
2003-09-14-InlineValue.ll 11 define i32 @Caller() {
  /external/v8/test/mjsunit/
function-caller.js 33 assertEquals(f, g.caller);
34 assertEquals(match, f.caller);
54 assertEquals(String.prototype.replace, h.caller);
  /frameworks/base/media/java/android/media/
AudioManagerInternal.java 42 public abstract void setRingerModeInternal(int ringerMode, String caller);
50 int onSetRingerModeExternal(int ringerModeOld, int ringerModeNew, String caller,
54 int onSetRingerModeInternal(int ringerModeOld, int ringerModeNew, String caller,
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/
PackageValidator.java 45 * Map allowed callers' certificate keys to the expected caller information.
75 LogHelper.v(TAG, "Adding allowed caller: ", info.name,
89 * @return false if the caller is not authorized to get data from this MediaBrowserService
107 LogHelper.w(TAG, "Caller has more than one signature certificate!");
116 LogHelper.v(TAG, "Signature for caller ", callingPackage, " is not valid: \n"
130 LogHelper.v(TAG, "Valid caller: ", info.name, " package=", info.packageName,
137 LogHelper.i(TAG, "Caller has a valid certificate, but its package doesn't match any ",
138 "expected package for the given certificate. Caller's package is ", callingPackage,
140 expectedPackages, "). This caller's certificate is: \n", signature);
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/
PackageValidator.java 45 * Map allowed callers' certificate keys to the expected caller information.
75 LogHelper.v(TAG, "Adding allowed caller: ", info.name,
89 * @return false if the caller is not authorized to get data from this MediaBrowserService
107 LogHelper.w(TAG, "Caller has more than one signature certificate!");
116 LogHelper.v(TAG, "Signature for caller ", callingPackage, " is not valid: \n"
130 LogHelper.v(TAG, "Valid caller: ", info.name, " package=", info.packageName,
137 LogHelper.i(TAG, "Caller has a valid certificate, but its package doesn't match any ",
138 "expected package for the given certificate. Caller's package is ", callingPackage,
140 expectedPackages, "). This caller's certificate is: \n", signature);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
PackageValidator.java 45 * Map allowed callers' certificate keys to the expected caller information.
75 LogHelper.v(TAG, "Adding allowed caller: ", info.name,
89 * @return false if the caller is not authorized to get data from this MediaBrowserService
107 LogHelper.w(TAG, "Caller has more than one signature certificate!");
116 LogHelper.v(TAG, "Signature for caller ", callingPackage, " is not valid: \n"
130 LogHelper.v(TAG, "Valid caller: ", info.name, " package=", info.packageName,
137 LogHelper.i(TAG, "Caller has a valid certificate, but its package doesn't match any ",
138 "expected package for the given certificate. Caller's package is ", callingPackage,
140 expectedPackages, "). This caller's certificate is: \n", signature);
  /external/icu/icu4c/source/extra/uconv/unicode/
uwmsg.h 19 Caller owns storage.
  /external/jsilver/src/com/google/streamhtmlparser/
ExternalState.java 22 * A representation of the parser state suitable for use by the caller
24 * the caller should perform on that state is not self-evident. In particular,
31 * <p>The caller of the Parser will query for the current parser state at
33 * current state as represented by this class, the caller can determine
  /external/llvm/test/CodeGen/X86/
fast-isel-tailcall.ll 5 ; On x86, -tailcallopt changes the ABI so the caller shouldn't readjust
  /external/llvm/test/MC/PowerPC/
ppc64-localentry.s 22 .type caller, @function
23 caller: label
28 .size caller, .-caller
  /external/llvm/test/Transforms/PruneEH/
simpletest.ll 10 define i32 @caller() {
  /external/llvm/test/Transforms/SCCP/
2004-11-16-DeadInvoke.ll 5 define void @caller() {
apint-bigarray.ll 11 define i10000 @caller()
  /external/selinux/libselinux/include/selinux/
get_context_list.h 18 Caller must free via freeconary. */
36 Caller must free via freecon. */
67 Caller must free via freecon.
74 Caller must free via freecon.
  /external/selinux/libselinux/man/man3/
matchmediacon.3 18 Caller must free returned security context
  /external/selinux/libsemanage/man/man3/
semanage_set_root.3 22 The function semanage_root() returns the semanage root. The returned value should not be modified by the caller.

Completed in 2737 milliseconds

1 2 34 5 6 7 8 91011>>