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

1 2 34 5 6 7 8 91011>>

  /art/runtime/native/
java_lang_Class.cc 599 auto caller = hs.NewHandle<mirror::Class>(nullptr); local
602 caller.Assign(GetCallingClass(soa.Self(), 1));
603 if (caller.Get() != nullptr && !caller->CanAccess(klass.Get())) {
606 PrettyClass(klass.Get()).c_str(), PrettyClass(caller.Get()).c_str());
639 if (caller.Get() == nullptr) {
640 caller.Assign(GetCallingClass(soa.Self(), 1));
642 if (UNLIKELY(caller.Get() != nullptr && !VerifyAccess(
644 caller.Get()))) {
647 PrettyMethod(constructor).c_str(), PrettyClass(caller.Get()).c_str())
    [all...]
  /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/v8/test/mjsunit/es6/
unscopables.js 679 var caller = 'local';
681 assertEquals(TestFunctionCallerUnscopables, caller);
682 func[Symbol.unscopables] = {caller: true};
683 assertEquals('local', caller);
685 assertEquals(TestFunctionCallerUnscopables, caller);
  /frameworks/base/services/backup/java/com/android/server/backup/
Trampoline.java 86 final int caller = Binder.getCallingUid(); local
87 if (caller != Process.SYSTEM_UID
88 && caller != Process.ROOT_UID) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactMetadataProvider.java 437 final String caller = getCallingPackage(); local
438 if (mAllowedPackage.equals(caller)) {
441 throw new SecurityException("Caller " + caller + " can't access ContactMetadataProvider");
VoicemailContentProvider.java 286 * Ensures that the caller has the permissions to perform a query/read operation, and
290 // If the caller has been explicitly granted read permission to this URI then no need to
318 * Ensures that the caller has the permissions to perform an update/delete operation, and
346 * Checks that either the caller has the MANAGE_VOICEMAIL permission,
376 int caller = Binder.getCallingUid(); local
377 if (caller == 0) {
380 String[] callerPackages = context().getPackageManager().getPackagesForUid(caller);
387 // If we have more than one caller package, which is very unlikely, let's return the one
404 * Creates a clause to restrict the selection to the calling provider or null if the caller has
  /external/fio/
gettime.c 53 void *caller; member in struct:gtod_log
57 static struct gtod_log *find_hash(void *caller)
59 unsigned long h = hash_ptr(caller, HASH_BITS);
66 if (log->caller == caller)
73 static void inc_caller(void *caller)
75 struct gtod_log *log = find_hash(caller);
82 log->caller = caller;
85 h = hash_ptr(caller, HASH_BITS)
    [all...]
  /art/compiler/optimizing/
inliner.cc 303 ArtMethod* caller = graph_->GetArtMethod(); local
305 // Under JIT, we should always know the caller.
306 DCHECK(caller != nullptr);
307 ScopedProfilingInfoInlineUse spiis(caller, soa.Self());
377 << " accessible to the caller";
436 // Also, the caller of `AddTypeGuard` must have guaranteed that the class is in the dex cache.
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 887 const Decl *caller = CE.getLocationContext()->getDecl(); local
891 return new PathDiagnosticCallPiece(caller, pos);
896 const Decl *caller) {
897 PathDiagnosticCallPiece *C = new PathDiagnosticCallPiece(path, caller);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_coverage_libcdep.cc 89 void IndirCall(uptr caller, uptr callee, uptr callee_cache[],
156 // Caller-Callee (cc) array, size and current index.
419 // Registers a pair caller=>callee.
420 // When a given caller is seen for the first time, the callee_cache is added
421 // to the global array cc_array, callee_cache[0] is set to caller and
426 void CoverageData::IndirCall(uptr caller, uptr callee, uptr callee_cache[],
432 if (atomic_compare_exchange_strong(&atomic_callee_cache[0], &zero, caller,
440 CHECK_EQ(atomic_load(&atomic_callee_cache[0], memory_order_relaxed), caller); local
640 // This function dumps the caller=>callee pairs into a file as a sequence of
653 uptr caller = cc_cache[0] local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpEngine.java 251 // If the caller's control flow writes the request body, we need to create that stream
563 * interrupt an in-flight request from any thread. It's the caller's responsibility to close the
847 Interceptor caller = client.networkInterceptors().get(index - 1); local
853 throw new IllegalStateException("network interceptor " + caller
859 throw new IllegalStateException("network interceptor " + caller
    [all...]
  /external/opencv3/modules/calib3d/test/
test_cameracalibration_badarg.cpp 105 C_Caller caller, bad_caller; local
106 caller.imageSize = imgSize;
107 caller.objPts = &objPts;
108 caller.imgPts = &imgPts;
109 caller.npoints = &npoints;
110 caller.cameraMatrix = &cameraMatrix;
111 caller.distCoeffs = &distCoeffs;
112 caller.rvecs = &rvecs;
113 caller.tvecs = &tvecs;
137 caller.flags = 0
357 C_Caller caller, bad_caller; local
497 C_Caller caller, bad_caller; local
    [all...]
  /external/opencv3/modules/imgproc/src/
templmatch.cpp 549 typedef bool (*Caller)(InputArray _img, InputArray _templ, OutputArray _result);
551 static const Caller callers[] =
556 const Caller caller = callers[method]; local
558 return caller(_img, _templ, _result);
    [all...]
  /external/v8/src/
accessors.cc 97 // situation where the caller does not have access.
997 JSFunction* caller; local
1037 Handle<JSFunction> caller; local
    [all...]
  /external/v8/test/mjsunit/wasm/
asm-wasm-stdlib.js 22 function caller() { function
39 return {caller:caller, nanCheck:nanCheck};
43 assertEquals(1, m.caller());
85 function caller() {
117 return {caller:caller};
121 assertEquals(1, m.caller());
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 44 // Number of bytes for each out register in the caller method's frame.
54 // | arg3 spill | | Caller's frame
90 // | arg3 spill | | Caller's frame
128 // | arg3 spill | | Caller's frame
164 // | arg3 spill | | Caller's frame
208 // | arg3 spill | | Caller's frame
240 // | reg. arg spills | | Caller's frame
345 // For the given quick ref and args quick frame, return the caller's PC.
571 uint8_t* const stack_args_; // Address of stack arguments in caller's frame.
757 ArtMethod* caller = QuickArgumentVisitor::GetCallingMethod(sp) local
943 ArtMethod* caller = nullptr; local
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 708 const Function *caller = bb->getParent(); local
709 if (!caller)
711 if (seenMap.find(caller) != seenMap.end())
754 const Function *caller = bb->getParent(); local
755 if (!caller)
758 // If a caller has already been seen, then the caller is
761 if (seenMap.find(caller) != seenMap.end()) {
    [all...]
  /external/valgrind/coregrind/
m_errormgr.c 201 /* For each caller specified for a suppression, record the nature of
202 the caller name. Not of interest to tools. */
1648 const HChar* caller; local
1761 const HChar *caller; local
    [all...]
  /frameworks/base/core/java/android/speech/tts/
TextToSpeechService.java 460 // When a message with QUEUE_FLUSH arrives we add the caller identity to the List and when a
462 // handler queue that removes the caller identify from the list and decrements the mFlushAll
463 // counter. This is so that when a message is processed and the caller identity is in the
533 // The AudioPlaybackHandler will be destroyed by the caller.
756 public SpeechItem(Object caller, int callerUid, int callerPid) {
757 mCallerIdentity = caller;
832 public UtteranceSpeechItem(Object caller, int callerUid, int callerPid) {
833 super(caller, callerUid, callerPid);
1496 IBinder caller = (IBinder) cookie; local
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 350 // (to derive the caller's class-loader). Use true to force initialization, and
775 } catch (MethodAndArgsCaller caller) {
776 caller.run();
    [all...]
  /frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
VoiceInteractionManagerService.java 188 // TODO: VI Make sure the caller is the current user or profile
192 final long caller = Binder.clearCallingIdentity(); local
210 Binder.restoreCallingIdentity(caller);
217 final long caller = Binder.clearCallingIdentity(); local
221 Binder.restoreCallingIdentity(caller);
561 "Caller is not the current voice interaction service");
563 final long caller = Binder.clearCallingIdentity(); local
567 Binder.restoreCallingIdentity(caller);
580 final long caller = Binder.clearCallingIdentity(); local
584 Binder.restoreCallingIdentity(caller);
596 final long caller = Binder.clearCallingIdentity(); local
612 final long caller = Binder.clearCallingIdentity(); local
630 final long caller = Binder.clearCallingIdentity(); local
647 final long caller = Binder.clearCallingIdentity(); local
663 final long caller = Binder.clearCallingIdentity(); local
679 final long caller = Binder.clearCallingIdentity(); local
696 final long caller = Binder.clearCallingIdentity(); local
713 final long caller = Binder.clearCallingIdentity(); local
731 final long caller = Binder.clearCallingIdentity(); local
751 final long caller = Binder.clearCallingIdentity(); local
766 final long caller = Binder.clearCallingIdentity(); local
794 final long caller = Binder.clearCallingIdentity(); local
834 final long caller = Binder.clearCallingIdentity(); local
854 final long caller = Binder.clearCallingIdentity(); local
881 final long caller = Binder.clearCallingIdentity(); local
916 final long caller = Binder.clearCallingIdentity(); local
926 final long caller = Binder.clearCallingIdentity(); local
957 final long caller = Binder.clearCallingIdentity(); local
977 final long caller = Binder.clearCallingIdentity(); local
1001 final long caller = Binder.clearCallingIdentity(); local
1042 final long caller = Binder.clearCallingIdentity(); 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...]

Completed in 3856 milliseconds

1 2 34 5 6 7 8 91011>>