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

1 2 34 5 6

  /external/chromium_org/chrome/browser/chromeos/login/
parallel_authenticator.cc 116 cryptohome::AsyncMethodCaller* caller = local
119 caller->AsyncMigrateKey(
128 caller->AsyncMigrateKey(
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.h 139 int call_stack_depth; // number of caller stack frames that we saved
140 const void* call_stack[kMaxStackDepth]; // caller address stack array
146 // i.e. (the program counter of) the immediate caller
152 uintptr_t caller() const { function in struct:MemoryRegionMap::Region
235 // Get the bucket whose caller stack trace is "key". The stack trace is
293 // Maximal number of caller stack frames to save (>= 0).
379 // caller stack trace is "key". The stack trace is used to a depth of
  /external/valgrind/main/callgrind/
bbcc.c 137 * - current context (includes caller chain)
484 fn_node* caller; local
505 caller = CLG_(get_fn_node)(bb);
506 CLG_(push_cxt)( caller );
510 source_bbcc->rec_array = new_recursion(caller->separate_recursions);
  /frameworks/base/core/java/com/android/internal/os/
TransferPipe.java 51 interface Caller {
73 static void go(Caller caller, IInterface iface, FileDescriptor out,
75 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT);
78 static void go(Caller caller, IInterface iface, FileDescriptor out,
83 caller.go(iface, out, prefix, args);
91 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
ZygoteInit.java 594 } catch (MethodAndArgsCaller caller) {
595 caller.run();
704 * so the caller may want to close the original descriptors.
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
Tracer.java 171 String caller = getCaller(); local
172 if (caller == null) {
176 log(String.format("%s (%s)", caller, join(", ", arguments)));
231 * expected to be converted manually by the caller. If the array is not converter then
264 StackTraceElement caller = stackTrace[METHOD_TO_TRACE_LOCATION]; local
271 int indexOfDot = caller.getClassName().lastIndexOf('.');
276 if (indexOfDot + 1 >= caller.getClassName().length()) {
280 String shortClassName = caller.getClassName().substring(indexOfDot + 1);
281 return String.format("%s.%s from %s() at %s:%d", shortClassName, caller.getMethodName(),
  /frameworks/uiautomator/src/com/android/uiautomator/core/
Tracer.java 171 String caller = getCaller(); local
172 if (caller == null) {
176 log(String.format("%s (%s)", caller, join(", ", arguments)));
231 * expected to be converted manually by the caller. If the array is not converter then
264 StackTraceElement caller = stackTrace[METHOD_TO_TRACE_LOCATION]; local
271 int indexOfDot = caller.getClassName().lastIndexOf('.');
276 if (indexOfDot + 1 >= caller.getClassName().length()) {
280 String shortClassName = caller.getClassName().substring(indexOfDot + 1);
281 return String.format("%s.%s from %s() at %s:%d", shortClassName, caller.getMethodName(),
  /frameworks/volley/src/com/android/volley/
VolleyLog.java 75 * Formats the caller's provided message and prepends useful info like
82 String caller = "<unknown>"; local
83 // Walk up the stack looking for the first caller outside of VolleyLog.
92 caller = callingClass + "." + trace[i].getMethodName();
97 Thread.currentThread().getId(), caller, msg);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 45 * or the field is inaccessible to the caller according to Java language
248 final Class<?> caller; local
252 caller = VMStack.getStackClass2(); // android-changed
256 // caller, tclass, null, modifiers);
258 // ClassLoader ccl = caller.getClassLoader();
280 caller != tclass) ? caller : null;
342 Class<?> caller = null; local
346 caller = VMStack.getStackClass2(); // android-changed
350 // caller, tclass, null, modifiers)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DbModifierWithNotification.java 254 int caller = Binder.getCallingUid(); local
255 if (caller == 0) {
258 return Lists.newArrayList(mContext.getPackageManager().getPackagesForUid(caller));
VoicemailContentProvider.java 285 // If the caller has been explicitly granted read permission to this URI then no need to
333 * Checks that either the caller has READ_WRITE_ALL_VOICEMAIL permission, or has the
363 int caller = Binder.getCallingUid(); local
364 if (caller == 0) {
367 String[] callerPackages = context().getPackageManager().getPackagesForUid(caller);
374 // If we have more than one caller package, which is very unlikely, let's return the one
391 * Creates a clause to restrict the selection to the calling provider or null if the caller has
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 46 // | arg3 spill | | Caller's frame
66 // | arg3 spill | | Caller's frame
85 // | arg3 spill | | Caller's frame
450 mirror::ArtMethod* caller = QuickArgumentVisitor::GetCallingMethod(sp); local
455 uint32_t dex_pc = caller->ToDexPc(QuickArgumentVisitor::GetCallingPc(sp));
458 MethodHelper mh(caller);
528 called = linker->ResolveMethod(dex_method_idx, caller, invoke_type);
  /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/chromium_org/v8/src/
accessors.cc 753 JSFunction* caller; local
755 caller = it.next();
756 if (caller == NULL) return isolate->heap()->null_value();
757 } while (caller->shared()->is_toplevel());
759 // If caller is a built-in function and caller's caller is also built-in,
761 JSFunction* potential_caller = caller;
763 caller = potential_caller;
766 if (!caller->shared()->native() && potential_caller != NULL)
    [all...]
bootstrapper.cc 180 // Make the "arguments" and "caller" properties throw a TypeError on access.
405 Handle<Foreign> caller(factory()->NewForeign(&Accessors::FunctionCaller));
426 { // Add caller.
427 CallbacksDescriptor d(*factory()->caller_string(), *caller, attribs);
543 Handle<AccessorPair> caller(factory()->NewAccessorPair());
567 { // Add caller.
568 CallbacksDescriptor d(*factory()->caller_string(), *caller, rw_attribs);
1152 Handle<AccessorPair> caller = factory->NewAccessorPair(); local
    [all...]
  /external/v8/src/
accessors.cc 669 JSFunction* caller) {
671 if (!caller->shared()->is_classic_mode()) {
676 return caller;
745 JSFunction* caller; local
747 caller = it.next();
748 if (caller == NULL) return isolate->heap()->null_value();
749 } while (caller->shared()->is_toplevel());
751 // If caller is a built-in function and caller's caller is also built-in
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 871 const Decl *caller = CE.getLocationContext()->getDecl(); local
875 return new PathDiagnosticCallPiece(caller, pos);
880 const Decl *caller) {
881 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...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cgraph.h 399 /* ECF flags determined from the caller. */
410 struct cgraph_node *caller; variable in typeref:struct:cgraph_node
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cgraph.h 399 /* ECF flags determined from the caller. */
410 struct cgraph_node *caller; variable in typeref:struct:cgraph_node
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cgraph.h 399 /* ECF flags determined from the caller. */
410 struct cgraph_node *caller; variable in typeref:struct:cgraph_node
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cgraph.h 399 /* ECF flags determined from the caller. */
410 struct cgraph_node *caller; variable in typeref:struct:cgraph_node
    [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...]

Completed in 613 milliseconds

1 2 34 5 6