Searched refs:context (Results 1 - 25 of 33) sorted by relevance

12

/system/extras/tests/memtest/
H A Dthumb.cpp8 extern "C" _Unwind_Reason_Code trace_function(_Unwind_Context *context, void *arg) argument
11 printf("0x%x\n", _Unwind_GetIP(context));
/system/core/debuggerd/
H A Dpr-support.c46 unwind_VRS_Pop_with_ptrace (_Unwind_Context *context,
111 unwind_execute_with_ptrace(_Unwind_Context * context, __gnu_unwind_state * uws, argument
127 _Unwind_VRS_Get (context, _UVRSC_CORE, R_LR, _UVRSD_UINT32,
129 _Unwind_VRS_Set (context, _UVRSC_CORE, R_PC, _UVRSD_UINT32,
142 _Unwind_VRS_Get (context, _UVRSC_CORE, R_SP, _UVRSD_UINT32, &reg);
147 _Unwind_VRS_Set (context, _UVRSC_CORE, R_SP, _UVRSD_UINT32, &reg);
161 if (unwind_VRS_Pop_with_ptrace (context, _UVRSC_CORE, op, _UVRSD_UINT32,
176 _Unwind_VRS_Get (context, _UVRSC_CORE, op, _UVRSD_UINT32, &reg);
177 _Unwind_VRS_Set (context, _UVRSC_CORE, R_SP, _UVRSD_UINT32, &reg);
188 if (unwind_VRS_Pop_with_ptrace (context, _UVRSC_COR
[all...]
H A Dunwind-arm.c173 unwind_execute_with_ptrace(_Unwind_Context * context, __gnu_unwind_state * uws,
181 _Unwind_VRS_Result unwind_VRS_Pop_with_ptrace (_Unwind_Context *context, argument
187 phase1_vrs *vrs = (phase1_vrs *) context;
384 static _Unwind_Reason_Code log_function(_Unwind_Context *context, pid_t pid, argument
393 phase2_vrs *vrs = (phase2_vrs*) context;
524 /* The dwarf unwinder assumes the context structure holds things
563 _Unwind_Context *context,
612 if (unwind_execute_with_ptrace (context, &uws, pid) != _URC_OK)
618 _Unwind_SetGR (context, R_LR, _Unwind_GetGR (context, R_P
561 unwind_pr_common_with_ptrace(_Unwind_State state, _Unwind_Control_Block *ucbp, _Unwind_Context *context, int id, pid_t pid) argument
630 unwind_cpp_pr0_with_ptrace(_Unwind_State state, _Unwind_Control_Block *ucbp, _Unwind_Context *context, pid_t pid) argument
639 unwind_cpp_pr1_with_ptrace(_Unwind_State state, _Unwind_Control_Block *ucbp, _Unwind_Context *context, pid_t pid) argument
648 unwind_cpp_pr2_with_ptrace(_Unwind_State state, _Unwind_Control_Block *ucbp, _Unwind_Context *context, pid_t pid) argument
[all...]
/system/core/include/cutils/
H A Dhashmap.h83 void* (*initialValue)(void* key, void* context), void* context);
101 bool (*callback)(void* key, void* value, void* context),
102 void* context);
/system/core/init/
H A Dparser.h30 void *context; member in struct:parse_state
H A Dinit_parser.c165 state->context = parse_service(state, nargs, args);
166 if (state->context) {
172 state->context = parse_action(state, nargs, args);
173 if (state->context) {
461 struct service *svc = state->context;
645 struct action *act = state->context;
/system/media/opensles/libopensles/
H A DSDL.c24 static void SDLCALL SDL_callback(void *context, Uint8 *stream, int len) argument
27 IEngine *thisEngine = (IEngine *) context;
H A DThreadPool.h55 extern SLresult ThreadPool_add(ThreadPool *tp, void (*handler)(void *, int), void *context,
H A DThreadPool.c23 static void *ThreadPool_start(void *context) argument
25 ThreadPool *tp = (ThreadPool *) context;
34 void *context = pClosure->mContext; local
38 (*handler)(context, parameter);
217 SLresult ThreadPool_add(ThreadPool *tp, void (*handler)(void *, int), void *context, int parameter) argument
225 closure->mContext = context;
H A DIDynamicInterfaceManagement.c93 void *context = this->mContext; local
99 (*callback)(&this->mItf, context, SL_DYNAMIC_ITF_EVENT_ASYNC_TERMINATION, result, iid);
343 void *context = this->mContext; local
349 (*callback)(&this->mItf, context, SL_DYNAMIC_ITF_EVENT_ASYNC_TERMINATION, result, iid);
H A DIObject.c75 void *context = this->mContext; local
80 (*callback)(&this->mItf, context, SL_OBJECT_EVENT_ASYNC_TERMINATION, result, state, NULL);
130 void *context = this->mContext; local
135 (*callback)(&this->mItf, context, SL_OBJECT_EVENT_ASYNC_TERMINATION, result, state,
203 void *context = this->mContext; local
208 (*callback)(&this->mItf, context, SL_OBJECT_EVENT_ASYNC_TERMINATION, result, state, NULL);
H A DSndFile.c52 void *context = thisAP->mPlay.mContext; local
93 (*callback)(&thisAP->mPlay.mItf, context, SL_PLAYEVENT_HEADATNEWPOS);
H A DIOutputMixExt.c298 void *context = bufferQueue->mContext; local
302 (*callback)((SLBufferQueueItf) bufferQueue, context);
/system/media/opensles/tests/listening/
H A DslesTest_playMuteSolo.cpp53 Context *context = (Context *) pContext; local
54 SLPlayItf playItf = context->playItf;
55 SLMuteSoloItf muteSolo = context->muteSoloItf;
63 switch (context->testMode) {
212 /* Initialize a context for use by the callback */
213 Context context; local
214 context.playItf = playItf;
215 context.muteSoloItf = muteSoloItf;
216 context.testMode = TEST_MUTE;
219 result = (*playItf)->RegisterCallback(playItf, PlayEventCallback, (void *) &context);
[all...]
/system/extras/ext4_utils/
H A Dsha1.c145 /* Copy context->state[] to working vars */
181 /* Add the working vars back into context.state[] */
194 * SHA1Init - Initialize new context
196 void SHA1Init(context)
197 SHA1_CTX *context;
200 assert(context != 0);
203 context->state[0] = 0x67452301;
204 context->state[1] = 0xEFCDAB89;
205 context->state[2] = 0x98BADCFE;
206 context
[all...]
/system/core/libcutils/
H A Ddir_hash.c41 SHA1_CTX context; local
65 SHA1Init(&context);
66 SHA1Update(&context, (unsigned char *) buf, len);
67 SHA1Final(md, &context);
77 SHA1Init(&context);
80 SHA1Update(&context, (unsigned char *) buf, len);
89 SHA1Final(md, &context);
H A Dhashmap.c252 void* (*initialValue)(void* key, void* context), void* context) {
267 void* value = initialValue(key, context);
307 bool (*callback)(void* key, void* value, void* context),
308 void* context) {
313 if (!callback(entry->key, entry->value, context)) {
251 hashmapMemoize(Hashmap* map, void* key, void* (*initialValue)(void* key, void* context), void* context) argument
306 hashmapForEach(Hashmap* map, bool (*callback)(void* key, void* value, void* context), void* context) argument
H A Dmq.c117 /** Optional context. */
118 void* context; member in struct:OutgoingPacket
365 static bool peerProxyRemoveConnection(void* key, void* value, void* context) { argument
366 PeerProxy* deadPeer = (PeerProxy*) context;
1179 void (*free)(void* context);
1180 void* context; member in struct:__anon92
1186 = (SharedBytesFreer*) packet->context;
1187 sharedBytesFreer->free(sharedBytesFreer->context);
1194 * free() with context after the bytes have been sent.
1201 void (*free)(void* context), voi
1200 peerSendSharedBytes(pid_t pid, char* bytes, size_t size, void (*free)(void* context), void* context) argument
[all...]
/system/media/opensles/tests/sandbox/
H A Dintbufq.c70 static void callback(BufferQueueItf caller, void *context) argument
75 if (context != expectedContext)
76 printf("context %p expected %p\r\n", context, expectedContext);
/system/wlan/ti/wilink_6_1/stad/src/Data_link/
H A DDataCtrl_Api.h107 TI_HANDLE rxData_RegNotif(TI_HANDLE hRxData,TI_UINT16 EventMask,GeneralEventCall_t CallBack,TI_HANDLE context,TI_UINT32 Cookie);
H A DtxCtrl_Api.h101 TI_HANDLE context,
/system/core/include/pixelflinger/
H A Dpixelflinger.h314 // construct / destroy the context
315 ssize_t gglInit(GGLContext** context);
316 ssize_t gglUninit(GGLContext* context);
/system/core/include/private/pixelflinger/
H A Dggl_context.h533 void ggl_init_context(context_t* context);
534 void ggl_uninit_context(context_t* context);
/system/media/opensles/tests/examples/
H A DslesTestFeedback.cpp62 static void recorderCallback(SLAndroidSimpleBufferQueueItf caller, void *context) argument
121 static void playerCallback(SLBufferQueueItf caller, void *context) argument
/system/wlan/ti/sta_dk_4_0_4_32/common/src/core/inc/
H A DDataCtrl_Api.h127 TI_HANDLE rxData_RegNotif(TI_HANDLE hRxData,UINT16 EventMask,GeneralEventCall_t CallBack,TI_HANDLE context,UINT32 Cookie);
266 TI_HANDLE txData_RegNotif(TI_HANDLE hTxData,UINT16 EventMask,GeneralEventCall_t CallBack,TI_HANDLE context,UINT32 Cookie);

Completed in 2301 milliseconds

12