/toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/ |
far-hc12.s | 73 movb 0,sp, 2,sp ; Copy page register below the caller's return
|
/art/runtime/entrypoints/ |
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/google-breakpad/src/processor/ |
stackwalker_amd64.cc | 208 // Create a new stack frame (ownership will be transferred to the caller) 215 // The caller's %rsp is directly underneath the return address pushed by 224 // Functions typically push their caller's %rbp immediately upon entry, 227 // that the caller's %rbp is saved there. 236 // If the callee's %rbp is plausible as a value for the caller's 249 BPLOG(ERROR) << "Can't get caller frame without memory or stack"; 273 // If nothing worked, tell the caller.
|
/external/libedit/examples/ |
fileman.c | 29 void too_dangerous (char *caller); 32 int valid_argument (char *caller, char *arg); 465 too_dangerous (char *caller) 469 caller); 473 /* Return non-zero if ARG is a valid argument for CALLER, 476 valid_argument (char *caller, char *arg) 480 fprintf (stderr, "%s: Argument required.\n", caller);
|
/external/mesa3d/src/gallium/include/state_tracker/ |
st_api.h | 190 /* these fields are filled in by the caller */ 194 /* this is owned by the caller */ 203 /* this is owned by the caller */ 331 * The returned textures are owned by the caller. They should be 417 * @smapi: manager owning the caller context 418 * @stctx: caller context 419 * @egl_image: EGLImage that caller recived
|
/external/opencv3/3rdparty/include/ffmpeg_/libavutil/ |
buffer.h | 39 * by the caller directly, but only through AVBufferRef. However, the caller may 43 * caller directly. 118 * If this function is successful, data is owned by the AVBuffer. The caller may 158 * @return 1 if the caller may write to the data referred to by buf (which is 212 * meant to solve this in cases when the caller needs a set of buffers of the 224 * When the caller is done with the pool and no longer needs to allocate any new
|
/external/v8/test/mjsunit/ |
function-bind.js | 276 // Test that .arguments and .caller are poisoned according to the ES5 spec. 284 var cdesc = Object.getOwnPropertyDescriptor(f_proto, "caller"); 301 assertThrows(function() { return f.caller; }, TypeError); 302 assertThrows(function() { f.caller = 42; }, TypeError); 306 // Shouldn't throw. Accessing the functions caller must throw if 307 // the caller is strict and the callee isn't. A bound function is built-in, 309 (function foo() { return foo.caller; }).bind()();
|
/hardware/libhardware/include/hardware/ |
power.h | 108 * The caller calls the get_number_of_platform_modes function to figure out the size 115 * Caller allocates power_state_voter_t *voters for each Platform-level sleep state by 152 * Voter list - Has to be allocated by the caller. 154 * Caller allocates power_state_voter_t *voters for each Platform-level sleep state 286 * Caller of the function queries the get_number_of_sleep_states and allocates the 325 * Caller uses this function to allocate memory for the power_state_voter_t list. 327 * Caller has to allocate the space for the *voter array which is
|
keymaster2.h | 104 * \param[out] key_blob returns the generated key. \p key_blob must not be NULL. The caller 108 * non-NULL. If non-NULL, the caller assumes ownership and must deallocate with 123 * caller assumes ownership of the allocated characteristics object, which must be deallocated 136 * \param[out] characteristics The key characteristics. Must not be NULL. The caller assumes 178 * \param[out] key_blob Used to return the opaque key blob. Must be non-NULL. The caller 182 * NULL, in which case no characteristics will be returned. If non-NULL, the caller assumes 211 * \param[out] export_data The exported key material. The caller assumes ownership. 237 * caller takes ownership and must deallocate with keymaster_free_cert_chain. 323 * nonce. The caller takes ownership of the output parameters array and must free it with 345 * the amount consumed in *data_consumed. The caller should provide the unconsumed data in [all...] |
/cts/tests/tests/mediastress/jni/ |
native-media-jni.cpp | 124 XAAndroidBufferQueueItf caller, 169 res = (*caller)->Enqueue(caller, NULL /*pBufferContext*/, 182 res = (*caller)->Enqueue(caller, (void *)&kEosBufferCntxt /*pBufferContext*/, 198 static void StreamChangeCallback(XAStreamInformationItf caller, 216 res = (*caller)->QueryStreamType(caller, streamIndex, &domain); 221 res = (*caller)->QueryStreamInformation(caller, streamIndex, &videoInfo) [all...] |
/development/ndk/platforms/android-14/samples/native-media/jni/ |
native-media-jni.c | 103 XAAndroidBufferQueueItf caller, 173 res = (*caller)->Enqueue(caller, NULL /*pBufferContext*/, 186 res = (*caller)->Enqueue(caller, (void *)&kEosBufferCntxt /*pBufferContext*/, 202 static void StreamChangeCallback(XAStreamInformationItf caller, 221 res = (*caller)->QueryStreamType(caller, streamIndex, &domain); 226 res = (*caller)->QueryStreamInformation(caller, streamIndex, &videoInfo) [all...] |
/frameworks/wilhelm/tests/mimeUri/ |
slesTestManyPlayers.cpp | 74 void PrefetchEventCallback( SLPrefetchStatusItf caller, void *pContext, SLuint32 event) 79 res = (*caller)->GetFillLevel(caller, &level); CheckErrPlyr(res, *pPlayerId); 82 res = (*caller)->GetPrefetchStatus(caller, &status); CheckErrPlyr(res, *pPlayerId); 103 SLPlayItf caller, 116 res = (*caller)->GetPosition(caller, &pMsec); CheckErrPlyr(res, *pPlayerId); 123 res = (*caller)->GetPosition(caller, &pMsec); CheckErrPlyr(res, *pPlayerId) [all...] |
slesTestPlayUri.cpp | 72 void PrefetchEventCallback( SLPrefetchStatusItf caller, void *pContext __unused, SLuint32 event) 76 result = (*caller)->GetFillLevel(caller, &level); 80 result = (*caller)->GetPrefetchStatus(caller, &status); 99 SLPlayItf caller, 110 (*caller)->GetPosition(caller, &pMsec); 116 (*caller)->GetPosition(caller, &pMsec) [all...] |
/art/runtime/native/ |
java_lang_reflect_Constructor.cc | 131 auto* caller = GetCallingClass(soa.Self(), 2); local 132 // If caller is null, then we called from JNI, just avoid the check since JNI avoids most 134 if (caller != nullptr && !caller->CanAccess(c.Get())) { 143 PrettyClass(c.Get()).c_str(), PrettyClass(caller).c_str());
|
/external/bison/tests/ |
headers.at | 99 AT_DATA([caller.c], 114 AT_COMPILE([caller.o]) 116 AT_COMPILE([caller], [caller.o input.o]) 117 AT_PARSER_CHECK([./caller])
|
/external/clang/test/CodeGen/ |
exceptions-seh-finally.c | 29 // CHECK-NEXT: cleanupret from %[[pad]] unwind to caller 95 // CHECK-NEXT: cleanupret from %[[pad]] unwind to caller 137 // CHECK-NEXT: cleanupret from %[[pad]] unwind to caller 181 // CHECK-NEXT: cleanupret from %[[pad]] unwind to caller 226 // CHECK-NEXT: cleanupret from %[[outerpad]] unwind to caller
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Interpreter.h | 68 CallSite Caller; // Holds the call that called subframes. 78 Caller(O.Caller), Values(std::move(O.Values)), 85 Caller = O.Caller;
|
/external/mesa3d/src/gallium/state_trackers/egl/common/ |
native.h | 117 * Available for caller's use. 132 * by the caller. A sequence number is also returned. The caller can use 134 * pointers may be NULL and it indicates the caller has no interest in those 188 * Available for caller's use.
|
/external/libnfc-nxp/src/ |
phFriNfc_NdefRecord.c | 52 * Get a specific NDEF record from the data, provided by the caller. The data is a buffer holding 55 * \param[in] Buffer The data buffer holding the NDEF Message, as provided by the caller. 56 * \param[in] BufferLength The data length, as provided by the caller. 58 * in the Message. The caller has to provide the array of pointers. 65 * of caller-provided array positions has to be the same as "NumberOfRawRecords". 67 * \param[in,out] NumberOfRawRecords Length of the Record pointer array. The caller has to provide 114 /* The number of caller-provided array positions for the array IsChunked 209 required by caller*/ 443 * Extract a specific NDEF record from the data, provided by the caller. The data is a buffer holding 447 * caller matching the requirements for \b Extraction, as described in the compoun [all...] |
/external/skia/include/core/ |
SkTypeface.h | 97 * Returns a ref() to the default typeface. The caller must call unref() 132 transferred, so the caller must not reference it again. 138 transferred, so the caller must not reference it again. 149 return null. If an instance is returned, the caller is responsible for 191 /** Copy into tags[] (allocated by the caller) the list of table tags in 202 /** Copy the contents of a table into data (allocated by the caller). Note 267 * It is the caller's responsibility to unref() the returned pointer. 283 * The caller is responsible for deleting the stream. 289 * The caller is responsible for deleting the font data.
|
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
SipHelper.java | 195 public ClientTransaction sendOptions(SipProfile caller, SipProfile callee, 198 Request request = (caller == callee) 199 ? createRequest(Request.OPTIONS, caller, tag) 200 : createRequest(Request.OPTIONS, caller, callee, tag); 269 private Request createRequest(String requestType, SipProfile caller, 271 FromHeader fromHeader = createFromHeader(caller, tag); 283 request.addHeader(createContactHeader(caller)); 287 public ClientTransaction sendInvite(SipProfile caller, SipProfile callee, 291 Request request = createRequest(Request.INVITE, caller, callee, tag);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
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/llvm/lib/Analysis/ |
LazyCallGraph.cpp | 94 "Callee not in the callee set for this caller?"); 181 // First insert it into the caller. 184 assert(G->SCCMap.lookup(&CallerN) == this && "Caller must be in this SCC."); 191 // First insert it into the caller. 194 assert(G->SCCMap.lookup(&CallerN) == this && "Caller must be in this SCC."); 199 "Callee must be a descendant of the Caller."); 207 // First insert it into the caller. 213 assert(&CallerC != this && "Caller must not be in this SCC."); 215 "Caller must be a descendant of the Callee."); 229 // The set of SCCs that are connected to the caller, and thus wil [all...] |
/external/autotest/server/hosts/ |
rpc_server_tracker.py | 25 host. The caller can use either |xmlrpc_connect| or |jsonrpc_connect| to 96 to the caller. 99 attempt to connect to the remote server; the caller is 103 Optionally, the caller can pass ready_test_name, a string 130 # Clean up any existing state. If the caller is willing 176 most of the rpc server sanity checking to the caller. Unlike
|
/external/icu/icu4c/source/i18n/unicode/ |
reldatefmt.h | 269 * fancy APIs. The caller tells it exactly what to display in a locale 272 * caller's responsibility to handle cut-off logic such as deciding between 281 * 2. Caller must not hold onto adopted pointers. 348 * It is an error for caller to delete this pointer or change its 362 * It is an error for caller to delete this pointer or change its 363 * contents after calling this constructor. Caller may pass NULL for
|