HomeSort by relevance Sort by last modified time
    Searched defs:caller (Results 101 - 125 of 189) sorted by null

1 2 3 45 6 7 8

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DbModifierWithNotification.java 255 int caller = Binder.getCallingUid(); local
256 if (caller == 0) {
259 return Lists.newArrayList(mContext.getPackageManager().getPackagesForUid(caller));
VoicemailContentProvider.java 282 * Ensures that the caller has the permissions to perform a query/read operation, and
286 // If the caller has been explicitly granted read permission to this URI then no need to
314 * Ensures that the caller has the permissions to perform an update/delete operation, and
342 * Checks that either the caller has the MANAGE_VOICEMAIL permission,
372 int caller = Binder.getCallingUid(); local
373 if (caller == 0) {
376 String[] callerPackages = context().getPackageManager().getPackagesForUid(caller);
383 // If we have more than one caller package, which is very unlikely, let's return the one
400 * Creates a clause to restrict the selection to the calling provider or null if the caller has
  /external/emma/core/java12/com/vladium/logging/
Logger.java 48 * <LI> caller-supplied message is logged, if not null;
49 * <LI> caller-supplied Throwable is dumped starting with a new line, if not null.
346 * nesting in the caller code.
444 final Class caller = logCaller ? ClassLoaderResolver.getCallerClass (2) : null; local
447 if ((caller != null) || (method != null))
451 if (caller != null) // if the caller could not be determined, s_classMask is ignored
453 String callerName = caller.getName ();
492 final Class caller = ClassLoaderResolver.getCallerClass (2); local
495 if ((caller != null) || (method != null)
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 367 int caller = ((Integer) callerIter.next()).intValue(); local
368 int returnLoc = getNext(iter, caller, pos);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Analyzer.java 235 Object caller = subroutine.callers.get(i); local
236 int call = insns.indexOf((AbstractInsnNode) caller);
  /external/fio/
gettime.c 47 void *caller; member in struct:gtod_log
51 static struct gtod_log *find_hash(void *caller)
53 unsigned long h = hash_ptr(caller, HASH_BITS);
60 if (log->caller == caller)
67 static struct gtod_log *find_log(void *caller)
69 struct gtod_log *log = find_hash(caller);
76 log->caller = caller;
79 h = hash_ptr(caller, HASH_BITS)
    [all...]
  /frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
VoiceInteractionManagerService.java 373 "Caller is not the current voice interaction service");
377 final long caller = Binder.clearCallingIdentity(); local
381 Binder.restoreCallingIdentity(caller);
396 final long caller = Binder.clearCallingIdentity(); local
401 Binder.restoreCallingIdentity(caller);
415 final long caller = Binder.clearCallingIdentity(); local
423 Binder.restoreCallingIdentity(caller);
437 final long caller = Binder.clearCallingIdentity(); local
441 Binder.restoreCallingIdentity(caller);
453 throw new SecurityException("Caller does not hold the permission
463 final long caller = Binder.clearCallingIdentity(); local
484 final long caller = Binder.clearCallingIdentity(); local
518 final long caller = Binder.clearCallingIdentity(); local
553 final long caller = Binder.clearCallingIdentity(); local
573 final long caller = Binder.clearCallingIdentity(); local
600 final long caller = Binder.clearCallingIdentity(); local
630 final long caller = Binder.clearCallingIdentity(); local
    [all...]
  /external/chromium_org/v8/src/
accessors.cc 1212 JSFunction* caller; local
1265 Handle<JSFunction> caller; local
    [all...]
bootstrapper.cc 176 // Make the "arguments" and "caller" properties throw a TypeError on access.
421 Handle<AccessorInfo> caller = local
423 { // Add caller.
424 CallbacksDescriptor d(Handle<Name>(Name::cast(caller->name())),
425 caller, attribs);
541 Handle<AccessorPair> caller(factory()->NewAccessorPair());
574 { // Add caller.
575 CallbacksDescriptor d(factory()->caller_string(), caller, rw_attribs);
1218 Handle<AccessorPair> caller = factory->NewAccessorPair(); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 886 const Decl *caller = CE.getLocationContext()->getDecl(); local
890 return new PathDiagnosticCallPiece(caller, pos);
895 const Decl *caller) {
896 PathDiagnosticCallPiece *C = new PathDiagnosticCallPiece(path, caller);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
SDL_dlcompat.c 627 /* Up to the caller to SDL_free() returned string */
647 void *caller = __builtin_return_address(1); /* Be *very* careful about inlining */ local
649 void *caller = NULL; local
661 if (dyld_NSIsSymbolNameDefinedInImage && dyld_NSLookupSymbolInImage && caller)
663 caller_mh = image_for_address(caller);
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 693 } catch (MethodAndArgsCaller caller) {
694 caller.run();
833 * so the caller may want to close the original descriptors.
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 37 // Number of bytes for each out register in the caller method's frame.
47 // | arg3 spill | | Caller's frame
75 // | arg3 spill | | Caller's frame
108 // | arg3 spill | | Caller's frame
132 // | arg3 spill | | Caller's frame
155 // | reg. arg spills | | Caller's frame
209 // For the given quick ref and args quick frame, return the caller's PC.
403 byte* const stack_args_; // Address of stack arguments in caller's frame.
690 mirror::ArtMethod* caller = QuickArgumentVisitor::GetCallingMethod(sp); local
695 uint32_t dex_pc = caller->ToDexPc(QuickArgumentVisitor::GetCallingPc(sp))
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
heap-checker_unittest.cc 1273 uintptr_t caller = 0; local
1315 uintptr_t caller = local
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
heap-checker_unittest.cc 1273 uintptr_t caller = 0; local
1315 uintptr_t caller = local
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 1046 const Function *caller = bb->getParent(); local
1092 const Function *caller = bb->getParent(); local
    [all...]
  /frameworks/base/core/java/android/os/
Debug.java 1619 StackTraceElement caller = callStack[4 + depth]; local
    [all...]
  /frameworks/base/core/java/android/speech/tts/
TextToSpeechService.java 495 // The AudioPlaybackHandler will be destroyed by the caller.
691 public SpeechItem(Object caller, int callerUid, int callerPid) {
692 mCallerIdentity = caller;
764 public UtteranceSpeechItem(Object caller, int callerUid, int callerPid) {
765 super(caller, callerUid, callerPid);
1392 IBinder caller = (IBinder) cookie; local
    [all...]
  /libcore/libart/src/main/java/java/lang/
Class.java 1555 Class<?> caller = VMStack.getStackClass1(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLRootView.java 187 String caller = e.getFileName() + ":" + e.getLineNumber() + " "; local
188 Log.d(TAG, "invalidate: " + caller);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cgraph.h 390 /* ECF flags determined from the caller. */
407 struct cgraph_node *caller; variable in typeref:struct:cgraph_node
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 2302 MethodEntry* caller; local
    [all...]
  /external/valgrind/main/exp-sgcheck/
sg_main.c 1852 StackFrame *callee, *caller; local
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.cpp 2131 pid_t caller = IPCThreadState::self()->getCallingPid(); local
2165 pid_t caller = IPCThreadState::self()->getCallingPid(); local
    [all...]
  /frameworks/base/core/java/android/app/
ActivityManagerNative.java     [all...]

Completed in 1284 milliseconds

1 2 3 45 6 7 8