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

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
ext_test.go 603 func caller(skip int) string { func
604 pc, _, _, _ := runtime.Caller(skip)
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
ext_test.go 524 func caller(skip int) string { func
525 pc, _, _, _ := runtime.Caller(skip)
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
ext_test.go 603 func caller(skip int) string { func
604 pc, _, _, _ := runtime.Caller(skip)
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
ext_test.go 524 func caller(skip int) string { func
525 pc, _, _, _ := runtime.Caller(skip)
  /art/runtime/entrypoints/
entrypoint_utils.cc 197 ArtMethod* caller = outer_method; local
211 caller = GetResolvedMethod(outer_method,
223 CHECK_EQ(caller, visitor.caller);
230 caller = visitor.caller;
232 return caller;
241 ArtMethod* caller = DoGetCalleeSaveMethodCaller(outer_method, caller_pc, do_caller_check); local
242 return caller;
252 result.caller
    [all...]
  /cts/tests/framework/base/activitymanager/app/src/android/server/am/
PipActivity.java 269 static void launchActivityIntoPinnedStack(Activity caller, Rect bounds) {
270 final Intent intent = new Intent(caller, PipActivity.class);
277 caller.startActivity(intent, options.toBundle());
284 static void launchEnterPipActivity(Activity caller) {
285 final Intent intent = new Intent(caller, PipActivity.class);
288 caller.startActivity(intent);
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
Analyzer.java 206 int caller = indexes.get(subroutine.callers.get(i)); local
207 merge(caller + 1,
208 frames[caller],
210 subroutines[caller],
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p3.cpp 171 int caller() { function in namespace:PR28195
  /external/valgrind/callgrind/
bbcc.c 137 * - current context (includes caller chain)
339 /* String is returned in a dynamically allocated buffer. Caller is
493 fn_node* caller; local
515 caller = CLG_(get_fn_node)(bb);
516 CLG_(push_cxt)( caller );
520 source_bbcc->rec_array = new_recursion(caller->separate_recursions);
  /external/volley/src/main/java/com/android/volley/
VolleyLog.java 80 * Formats the caller's provided message and prepends useful info like
87 String caller = "<unknown>"; local
88 // Walk up the stack looking for the first caller outside of VolleyLog.
97 caller = callingClass + "." + trace[i].getMethodName();
102 Thread.currentThread().getId(), caller, msg);
  /frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
RequestSync.java 38 void invoke(RequestSync caller) {
39 final int flag = caller.mExemptionFlag;
40 caller.mExtras.putInt(ContentResolver.SYNC_VIRTUAL_EXTRAS_EXEMPTION_FLAG, flag);
50 .setSyncAdapter(caller.mAccount, caller.mAuthority)
51 .setExtras(caller.mExtras)
59 void invoke(RequestSync caller) {
60 ContentResolver.addPeriodicSync(caller.mAccount, caller.mAuthority, caller.mExtras
    [all...]
  /frameworks/base/cmds/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/base/core/java/com/android/internal/os/
TransferPipe.java 58 interface Caller {
133 static void go(Caller caller, IInterface iface, FileDescriptor out,
135 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT);
138 static void go(Caller caller, IInterface iface, FileDescriptor out,
143 caller.go(iface, out, prefix, args);
150 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
  /libcore/ojluni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 81 * or the field is inaccessible to the caller according to Java language
87 Class<?> caller = VMStack.getStackClass1(); // Android-changed local
89 return new CASUpdater<U>(tclass, fieldName, caller);
91 return new LockedUpdater<U>(tclass, fieldName, caller);
381 final Class<?> caller) {
389 // caller, tclass, null, modifiers);
391 // ClassLoader ccl = caller.getClassLoader();
411 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass;
511 final Class<?> caller) {
519 // caller, tclass, null, modifiers)
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
HighPowerDetail.java 181 public static void show(Fragment caller, int uid, String packageName, int requestCode) {
187 fragment.setTargetFragment(caller, requestCode);
188 fragment.show(caller.getFragmentManager(), HighPowerDetail.class.getSimpleName());
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
ext_test.go 712 name := caller(2)
734 name := caller(2)
756 name := caller(2)
770 name := caller(2)
777 func caller(skip int) string { func
778 pc, _, _, _ := runtime.Caller(skip)
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
ext_test.go 712 name := caller(2)
734 name := caller(2)
756 name := caller(2)
770 name := caller(2)
777 func caller(skip int) string { func
778 pc, _, _, _ := runtime.Caller(skip)
  /frameworks/support/media/src/main/java/androidx/media/
MediaSession2Stub.java 189 IMediaControllerCallback caller = IMediaControllerCallback.Stub.asInterface( local
191 if (caller == null) {
195 onCommand2(caller.asBinder(), commandCode, new Session2Runnable() {
392 IMediaControllerCallback caller = IMediaControllerCallback.Stub.asInterface( local
394 if (caller == null || customCommand == null) {
399 onCommand2(caller.asBinder(), customCommand, new Session2Runnable() {
443 private void onCommand2(@NonNull IBinder caller, final int commandCode,
445 onCommand2Internal(caller, null, commandCode, runnable);
448 private void onCommand2(@NonNull IBinder caller, @NonNull final SessionCommand2 sessionCommand,
450 onCommand2Internal(caller, sessionCommand, COMMAND_CODE_CUSTOM, runnable)
    [all...]
  /external/desugar/test/java/com/google/devtools/build/android/desugar/runtime/
ThrowableExtensionTest.java 249 private static String printStackTraceStderrToString(PrintStackTraceCaller caller)
255 caller.printStackTrace();
263 private static String printStackTracePrintStreamToString(Consumer<PrintStream> caller)
267 caller.accept(printStream);
273 private static String printStackTracePrintWriterToString(Consumer<PrintWriter> caller)
278 caller.accept(printWriter);
  /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);
  /frameworks/base/services/tests/servicestests/src/com/android/server/am/
ActivityStarterTests.java 180 * Excercises how the {@link ActivityStarter} reacts to various preconditions. The caller
198 final IApplicationThread caller = mock(IApplicationThread.class); local
200 // If no caller app, return {@code null} {@link ProcessRecord}.
271 final int result = starter.setCaller(caller)
289 final int optionResult = optionStarter.setCaller(caller)
  /packages/apps/Settings/tests/robotests/src/com/android/settings/applications/appinfo/
AppInfoDashboardFragmentTest.java 314 final SettingsPreferenceFragment caller = mock(SettingsPreferenceFragment.class); local
316 when(caller.getActivity()).thenReturn(sa);
317 when(caller.getContext()).thenReturn(sa);
322 caller, appEntry);
327 final SettingsPreferenceFragment caller = mock(SettingsPreferenceFragment.class); local
329 when(caller.getContext()).thenReturn(sa);
337 caller, appEntry);
341 verify(caller).startActivityForResult(intent.capture(), any(Integer.class));
  /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");
DbModifierWithNotification.java 344 * @return {@code true} if the caller is modifying its own voicemail, or this is an internal
364 int caller = Binder.getCallingUid(); local
365 if (caller == 0) {
368 return Lists.newArrayList(mContext.getPackageManager().getPackagesForUid(caller));

Completed in 1808 milliseconds

1 23 4 5 6 7 8 91011>>