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

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-17/arch-arm/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-17/arch-mips/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-17/arch-x86/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-18/arch-arm/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-18/arch-mips/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-19/arch-arm/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /art/runtime/entrypoints/
entrypoint_utils-inl.h 51 ArtMethod* caller = outer_method->GetDexCacheResolvedMethod(method_index, sizeof(void*)); local
52 if (!caller->IsRuntimeMethod()) {
53 return caller;
63 // We first find the class loader of our caller. If it is the outer method, we can directly
64 // use its class loader. Otherwise, we also need to resolve our caller.
72 caller = GetResolvedMethod<kResolve>(outer_method,
76 class_loader.Assign(caller->GetClassLoader());
128 // that the caller knows to check the allocator type to see if it
155 // that the caller knows to check the allocator type to see if it
    [all...]
entrypoint_utils.cc 271 ArtMethod* caller = outer_method; local
284 caller = GetResolvedMethod(outer_method,
295 CHECK_EQ(caller, visitor.caller);
302 caller = visitor.caller;
305 return caller;
  /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);
  /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 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);
  /frameworks/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);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 52 * or the field is inaccessible to the caller according to Java language
58 Class<?> caller = VMStack.getStackClass1(); // android-changed local
60 return new CASUpdater<U>(tclass, fieldName, caller);
62 return new LockedUpdater<U>(tclass, fieldName, caller);
352 final Class<?> caller) {
360 // caller, tclass, null, modifiers);
362 // ClassLoader ccl = caller.getClassLoader();
382 this.cclass = (Modifier.isProtected(modifiers)) ? caller : tclass;
482 final Class<?> caller) {
490 // caller, tclass, null, modifiers)
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
HighPowerDetail.java 150 public static void show(Fragment caller, String packageName, int requestCode,
157 fragment.setTargetFragment(caller, requestCode);
158 fragment.show(caller.getFragmentManager(), HighPowerDetail.class.getSimpleName());
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DbModifierWithNotification.java 269 * @return {@code true} if the caller is modifying its own voicemail, or this is an internal
341 int caller = Binder.getCallingUid(); local
342 if (caller == 0) {
345 return Lists.newArrayList(mContext.getPackageManager().getPackagesForUid(caller));

Completed in 736 milliseconds

1 23 4 5 6 7 8 91011>>