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

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/runtime/
stack_test.go 647 func (s structWithMethod) caller() string { func
648 _, file, line, ok := Caller(1)
650 panic("Caller failed")
670 wrapper := (*structWithMethod).caller
672 if dc, ic := d.caller(), wrapper(&d); dc != ic {
673 t.Fatalf("direct caller %q != indirect caller %q", dc, ic)
  /prebuilts/go/linux-x86/src/runtime/
stack_test.go 647 func (s structWithMethod) caller() string { func
648 _, file, line, ok := Caller(1)
650 panic("Caller failed")
670 wrapper := (*structWithMethod).caller
672 if dc, ic := d.caller(), wrapper(&d); dc != ic {
673 t.Fatalf("direct caller %q != indirect caller %q", dc, ic)
  /art/openjdkjvmti/
ti_stack.cc 730 caller(nullptr),
737 DCHECK(caller == nullptr);
739 caller = m;
750 art::ArtMethod* caller; member in struct:openjdkjvmti::GetLocationVisitor
762 method = visitor.caller;
    [all...]
  /art/runtime/native/
java_lang_Class.cc 53 // Returns true if the first caller outside of the Class class or java.lang.invoke package
61 caller(nullptr) {
68 caller = nullptr;
92 caller = m;
96 ArtMethod* caller; member in struct:art::FirstExternalCallerVisitor
101 return visitor.caller != nullptr &&
102 hiddenapi::IsCallerTrusted(visitor.caller->GetDeclaringClass());
105 // Returns true if the first non-ClassClass caller up the stack is not allowed to
113 // Returns true if the first non-ClassClass caller up the stack should not be
812 auto caller = hs.NewHandle<mirror::Class>(nullptr); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_lsprof.c 261 getSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry)
263 return (ProfilerSubEntry*) RotatingTree_Get(&caller->calls,
268 newSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry)
282 RotatingTree_Add(&caller->calls, &self->header);
328 /* find or create an entry for me in my caller's entry */
329 ProfilerEntry *caller = self->previous->ctxEntry; local
330 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry);
332 subentry = newSubEntry(pObj, caller, entry);
354 /* find or create an entry for me in my caller's entry */
355 ProfilerEntry *caller = self->previous->ctxEntry; local
    [all...]
  /external/fio/
gettime.c 55 void *caller; member in struct:gtod_log
59 static struct gtod_log *find_hash(void *caller)
61 unsigned long h = hash_ptr(caller, HASH_BITS);
68 if (log->caller == caller)
75 static void inc_caller(void *caller)
77 struct gtod_log *log = find_hash(caller);
84 log->caller = caller;
87 h = hash_ptr(caller, HASH_BITS)
    [all...]
  /external/llvm/unittests/ProfileData/
InstrProfTest.cpp 215 InstrProfRecord Record1("caller", 0x1234, {1, 2});
239 Expected<InstrProfRecord> R = Reader->getInstrProfRecord("caller", 0x1234);
262 InstrProfRecord Record("caller", 0x1234, {1, 2});
270 Expected<InstrProfRecord> R = Reader->getInstrProfRecord("caller", 0x1234);
278 Function::Create(FTy, Function::ExternalLinkage, "caller", M.get());
358 InstrProfRecord Record1("caller", 0x1234, {1, 2});
382 Expected<InstrProfRecord> R = Reader->getInstrProfRecord("caller", 0x1234);
404 InstrProfRecord Record1("caller", 0x1234, {1, 2});
435 Expected<InstrProfRecord> R = Reader->getInstrProfRecord("caller", 0x1234);
454 static const char caller[] = "caller" local
624 static const char caller[] = "caller"; local
    [all...]
  /external/mesa3d/src/mesa/main/
texgetimage.c 914 const char *caller)
920 _mesa_error(ctx, GL_INVALID_VALUE, "%s(xoffset = %d)", caller, xoffset);
925 _mesa_error(ctx, GL_INVALID_VALUE, "%s(yoffset = %d)", caller, yoffset);
930 _mesa_error(ctx, GL_INVALID_VALUE, "%s(zoffset = %d)", caller, zoffset);
935 _mesa_error(ctx, GL_INVALID_VALUE, "%s(width = %d)", caller, width);
940 _mesa_error(ctx, GL_INVALID_VALUE, "%s(height = %d)", caller, height);
945 _mesa_error(ctx, GL_INVALID_VALUE, "%s(depth = %d)", caller, depth);
954 "%s(1D, yoffset = %d)", caller, yoffset);
959 "%s(1D, height = %d)", caller, height);
968 "%s(zoffset = %d)", caller, zoffset)
1361 static const char *caller = "glGetnTexImageARB"; local
1392 static const char *caller = "glGetTexImage"; local
1424 static const char *caller = "glGetTextureImage"; local
1460 static const char *caller = "glGetTextureSubImage"; local
1675 static const char *caller = "glGetnCompressedTexImageARB"; local
1705 static const char *caller = "glGetCompressedTexImage"; local
1737 static const char *caller = "glGetCompressedTextureImage"; local
1769 static const char *caller = "glGetCompressedTextureImage"; local
    [all...]
  /external/python/cpython2/Modules/
_lsprof.c 261 getSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry)
263 return (ProfilerSubEntry*) RotatingTree_Get(&caller->calls,
268 newSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry)
282 RotatingTree_Add(&caller->calls, &self->header);
328 /* find or create an entry for me in my caller's entry */
329 ProfilerEntry *caller = self->previous->ctxEntry; local
330 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry);
332 subentry = newSubEntry(pObj, caller, entry);
354 /* find or create an entry for me in my caller's entry */
355 ProfilerEntry *caller = self->previous->ctxEntry local
    [all...]
  /external/python/cpython3/Modules/
_lsprof.c 260 getSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry)
262 return (ProfilerSubEntry*) RotatingTree_Get(&caller->calls,
267 newSubEntry(ProfilerObject *pObj, ProfilerEntry *caller, ProfilerEntry* entry)
281 RotatingTree_Add(&caller->calls, &self->header);
327 /* find or create an entry for me in my caller's entry */
328 ProfilerEntry *caller = self->previous->ctxEntry; local
329 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry);
331 subentry = newSubEntry(pObj, caller, entry);
353 /* find or create an entry for me in my caller's entry */
354 ProfilerEntry *caller = self->previous->ctxEntry local
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
Trampoline.java 148 final int caller = binderGetCallingUid(); local
149 if (caller != Process.SYSTEM_UID
150 && caller != Process.ROOT_UID) {
  /frameworks/base/services/backup/java/com/android/server/backup/transport/
TransportClient.java 114 String caller) {
121 caller,
132 String caller,
139 mCreatorLogString = caller;
190 * @param caller A {@link String} identifying the caller for logging/debugging purposes. This
201 public void connectAsync(TransportConnectionListener listener, String caller) {
207 log(Priority.WARN, caller, "Async connect: UNUSABLE client");
208 notifyListener(listener, null, caller);
221 log(Priority.DEBUG, caller, "Async connect: service bound, connecting")
499 String caller = entry.getValue(); local
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 298 // (to derive the caller's class-loader). Use true to force initialization, and
764 final Runnable caller; local
    [all...]
  /art/compiler/optimizing/
inliner.cc 637 ArtMethod* caller = graph_->GetArtMethod(); local
638 // Under JIT, we should always know the caller.
639 DCHECK(caller != nullptr);
640 ScopedProfilingInfoInlineUse spiis(caller, Thread::Current());
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 882 const Decl *caller = CE.getLocationContext()->getDecl(); local
886 return new PathDiagnosticCallPiece(caller, pos);
891 const Decl *caller) {
892 PathDiagnosticCallPiece *C = new PathDiagnosticCallPiece(path, caller);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpEngine.java 227 // If the caller's control flow writes the request body, we need to create that stream
418 * interrupt an in-flight request from any thread. It's the caller's responsibility to close the
674 Interceptor caller = client.networkInterceptors().get(index - 1); local
680 throw new IllegalStateException("network interceptor " + caller
686 throw new IllegalStateException("network interceptor " + caller
    [all...]
  /external/v8/src/
accessors.cc 91 // situation where the caller does not have access.
1013 JSFunction* caller; local
1054 Handle<JSFunction> caller; local
    [all...]
  /prebuilts/misc/common/robolectric/3.6.1/lib/
sandbox-3.6.1.jar 
  /prebuilts/sdk/tools/
core-lambda-stubs.jar 
  /prebuilts/sdk/tools/darwin/bin/
core-lambda-stubs.jar 
  /prebuilts/sdk/tools/linux/bin/
core-lambda-stubs.jar 
  /prebuilts/sdk/tools/windows/bin/
core-lambda-stubs.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
sandbox-3.5.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
sandbox-3.4.2.jar 
  /art/runtime/interpreter/
unstarted_runtime.cc 198 const char* caller) {
211 // check the caller.
229 caller,
694 ObjPtr<mirror::Class> caller = GetCallingClass(self, 2); local
695 // If caller is null, then we called from JNI, just avoid the check since JNI avoids most
697 if (caller != nullptr && !caller->CanAccess(c.Get())) {
    [all...]

Completed in 611 milliseconds

1 2 34 5 6 7 8 91011>>