/prebuilts/go/linux-x86/src/os/ |
proc.go | 27 // Getuid returns the numeric user id of the caller. 30 // Geteuid returns the numeric effective user id of the caller. 33 // Getgid returns the numeric group id of the caller. 36 // Getegid returns the numeric effective group id of the caller. 39 // Getgroups returns a list of the numeric ids of groups that the caller belongs to.
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
RenderingRequest.java | 51 int type, RenderingRequestCaller caller) { 52 RenderingRequest.post(context, source, preset, type, caller, null, null); 56 RenderingRequestCaller caller, Rect bounds, Rect destination) { 59 || preset == null || caller == null) { 61 + " or preset: " + preset + " or caller: " + caller); 91 request.setCaller(caller); 97 RenderingRequestCaller caller) { 98 if (preset == null || caller == null) { 100 + preset + " or caller: " + caller) [all...] |
/system/bt/osi/include/ |
fixed_queue.h | 34 // |capacity| are added to the queue, the caller is blocked until space is 35 // made available in the queue. Returns NULL on failure. The caller must free 55 // Enqueues the given |data| into the |queue|. The caller will be blocked 61 // this function will block the caller until an item is enqueued. This 66 // the caller. If the queue capacity would be exceeded by adding one more 72 // the caller. If the queue is empty or NULL, this function returns NULL 77 // This function will never block the caller. Returns NULL if there are no 82 // This function will never block the caller. Returns NULL if there are no 87 // function will never block the caller. If the queue is empty or NULL, this 94 // will never block the caller. |queue| may not be NULL [all...] |
/external/v8/test/mjsunit/es6/ |
arrow-functions.js | 55 assertFalse(arrowFn.hasOwnProperty("caller")); 56 assertThrows(function() { return arrowFn.caller; }, TypeError); 57 assertThrows(function() { arrowFn.caller = {}; }, TypeError); 67 assertFalse(arrowFn.hasOwnProperty("caller")); 68 assertThrows(function() { return arrowFn.caller; }, TypeError); 69 assertThrows(function() { arrowFn.caller = {}; }, TypeError);
|
/external/v8/test/mjsunit/regress/ |
regress-145201.js | 28 // Fix some corner cases in skipping native methods using caller. 66 var caller = catcher.caller; 67 if (/native/i.test(caller) || /ADD/.test(caller)) { 68 net[caller] = 0;
|
regress-1548.js | 28 // Test that the caller and arguments objects are not available on native 32 function foo() { return [].map.caller; } 35 // Try to delete the caller property (to make sure that we can't get to the 36 // caller accessor on the prototype. 37 delete Array.prototype.map.caller; 46 // caller accessor on the prototype.
|
regress-crbug-573858.js | 8 (function() {"use strict"}).__proto__, "caller").get;
|
/external/webrtc/webrtc/modules/desktop_capture/ |
screen_capture_frame_queue.h | 25 // frame - the frame that the caller is working with at the moment, and to the 29 // The caller is expected to (re)allocate frames if current_frame() returns 30 // NULL. The caller can mark all frames in the queue for reallocation (when, 32 // which the caller can query. 46 // Replaces the current frame with a new one allocated by the caller. The 51 // frames are freed though as the caller can still access them.
|
/external/emma/core/java12/com/vladium/util/ |
ClassLoaderResolver.java | 33 * typically involves choosing between the caller's current, thread context, 39 * @param caller [null input eliminates the caller's current classloader 42 * @return classloader to be used by the caller ['null' indicates the 45 public static synchronized ClassLoader getClassLoader (final Class caller) 47 final ClassLoadContext ctx = new ClassLoadContext (caller); 55 * typically involves choosing between the caller's current, thread context, 59 * This method uses its own caller to set the call context. To be able to 64 * @return classloader to be used by the caller ['null' indicates the 69 final Class caller = getCallerClass (1); // 'caller' can be set to nul local 148 final Class caller = ctx.getCallerClass (); local [all...] |
/cts/tests/tests/accounts/src/android/accounts/cts/ |
AccountManagerUnaffiliatedAuthenticatorTests.java | 36 * the caller. This is important to test that portion of the {@link AccountManager} API intended 78 fail("Expected to just barf if the caller doesn't share a signature."); 101 fail("addAccountExplicitly should just barf if the caller isn't permitted."); 111 fail("removeAccount should just barf if the caller isn't permitted."); 122 fail("removeAccount should just barf if the caller isn't permitted."); 130 fail("removeAccountExplicitly should just barf if the caller isn't permitted."); 138 fail("getPassword should just barf if the caller isn't permitted."); 147 fail("setPassword should just barf if the caller isn't permitted."); 155 fail("clearPassword should just barf if the caller isn't permitted."); 164 fail("getUserData should just barf if the caller isn't permitted.") [all...] |
/external/llvm/test/CodeGen/AArch64/ |
arm64-elf-calls.ll | 6 define void @caller() { 9 ; CHECK-LABEL: caller:
|
/libcore/ojluni/src/main/java/java/security/acl/ |
Owner.java | 43 * Adds an owner. Only owners can modify ACL contents. The caller 48 * @param caller the principal invoking this method. It must be an owner 54 * @exception NotOwnerException if the caller principal is not an owner 57 public boolean addOwner(Principal caller, Principal owner) 64 * The caller principal must be an owner of the ACL in order to invoke 67 * @param caller the principal invoking this method. It must be an owner 75 * @exception NotOwnerException if the caller principal is not an owner 81 public boolean deleteOwner(Principal caller, Principal owner)
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/ |
ParameterIconStyle.java | 30 public void getIcon(int index, BitmapCaller caller) { 31 caller.available(mBitmaps[index]);
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug347.go | 33 pc, file, line, ok := runtime.Caller(i) 35 print("BUG: bug347: cannot find caller\n")
|
bug348.go | 28 pc, file, line, ok := runtime.Caller(i) 30 print("BUG: bug348: cannot find caller\n")
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug347.go | 33 pc, file, line, ok := runtime.Caller(i) 35 print("BUG: bug347: cannot find caller\n")
|
bug348.go | 28 pc, file, line, ok := runtime.Caller(i) 30 print("BUG: bug348: cannot find caller\n")
|
/external/clang/test/Analysis/ |
inline4.c | 9 // Do not remove block-level expression bindings of caller when analyzing
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
Subroutine.java | 34 public Subroutine(int start, int caller) { 36 callers.add(new Integer(caller)); 39 public void addCaller(int caller) { 40 callers.add(new Integer(caller));
|
/external/llvm/test/CodeGen/ARM/Windows/ |
aapcs.ll | 8 define void @caller() {
|
/external/llvm/test/CodeGen/X86/ |
fast-cc-merge-stack-adj.ll | 8 define x86_fastcallcc void @caller(i32, i64) {
|
/external/llvm/test/Transforms/Inline/ |
2004-04-15-InlineDeletesCall.ll | 15 define void @caller() {
|
2007-12-19-InlineNoUnwind.ll | 16 define i32 @caller() {
|
/external/selinux/libselinux/include/selinux/ |
get_default_type.h | 16 Caller must free via free().
|
/external/vboot_reference/host/lib/include/ |
host_key.h | 24 /* Read a private key from a .pem file. Caller owns the returned pointer, 35 /* Read a privake key from a .vbprivk file. Caller owns the returned 48 /* Read a public key from a .vbpubk file. Caller owns the returned 57 /* Read a public key from a .keyb file. Caller owns the returned
|