Searched defs:context (Results 1 - 25 of 1764) sorted by relevance

1234567891011>>

/external/libunwind/src/unwind/
H A DGetTextRelBase.c29 _Unwind_GetTextRelBase (struct _Unwind_Context *context) argument
H A DGetBSP.c29 _Unwind_GetBSP (struct _Unwind_Context *context) argument
34 unw_get_reg (&context->cursor, UNW_IA64_BSP, &val);
H A DGetCFA.c29 _Unwind_GetCFA (struct _Unwind_Context *context) argument
33 unw_get_reg (&context->cursor, UNW_REG_SP, &val);
H A DGetDataRelBase.c29 _Unwind_GetDataRelBase (struct _Unwind_Context *context) argument
34 unw_get_proc_info (&context->cursor, &pi);
H A DGetGR.c29 _Unwind_GetGR (struct _Unwind_Context *context, int index) argument
33 if (index == UNW_REG_SP && context->end_of_stack)
38 unw_get_reg (&context->cursor, index, &val);
H A DGetIP.c29 _Unwind_GetIP (struct _Unwind_Context *context) argument
33 unw_get_reg (&context->cursor, UNW_REG_IP, &val);
H A DGetIPInfo.c32 _Unwind_GetIPInfo (struct _Unwind_Context *context, int *ip_before_insn) argument
36 unw_get_reg (&context->cursor, UNW_REG_IP, &val);
37 *ip_before_insn = unw_is_signal_frame (&context->cursor);
H A DGetLanguageSpecificData.c29 _Unwind_GetLanguageSpecificData (struct _Unwind_Context *context) argument
34 unw_get_proc_info (&context->cursor, &pi);
H A DGetRegionStart.c29 _Unwind_GetRegionStart (struct _Unwind_Context *context) argument
34 unw_get_proc_info (&context->cursor, &pi);
H A DSetGR.c32 _Unwind_SetGR (struct _Unwind_Context *context, int index, argument
38 unw_set_reg (&context->cursor, index, new_value);
42 unw_set_reg (&context->cursor, UNW_IA64_NAT + (index - UNW_IA64_GR), 0);
H A DSetIP.c29 _Unwind_SetIP (struct _Unwind_Context *context, unsigned long new_value) argument
31 unw_set_reg (&context->cursor, UNW_REG_IP, new_value);
H A DResume.c31 struct _Unwind_Context context; local
38 if (_Unwind_InitContext (&context, &uc) < 0)
44 _Unwind_Phase2 (exception_object, &context, &destroy_map);
/external/llvm/test/Bindings/OCaml/
H A Dext_exc.ml9 let context = Llvm.global_context () var
15 ignore (Llvm_bitreader.get_module context (Llvm.MemoryBuffer.of_stdin ()))
H A Dtransform_utils.ml12 let context = global_context () var
15 let m = create_module context "mod" in
/external/clang/test/Sema/
H A Dfreemain.c7 void* main(void* context, long size) { argument
8 if (context) return allocate(size);
/external/libselinux/src/
H A Dfsetfilecon.c10 int fsetfilecon(int fd, const char *context) argument
12 return fsetxattr(fd, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dlsetfilecon.c10 int lsetfilecon(const char *path, const char *context) argument
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dsetfilecon.c10 int setfilecon(const char *path, const char *context) argument
12 return setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
/external/toybox/toys/android/
H A Druncon.c1 /* runcon.c - Run command in specified security context
14 Run a command in a specified security context.
22 char *context = *toys.optargs; local
24 if (setexeccon(context)) perror_exit("Could not set context to %s", context);
/external/libunwind/android/tests/
H A Dlocal_test.cpp27 unw_context_t* context; local
28 context = reinterpret_cast<unw_context_t*>(malloc(sizeof(unw_context_t) + EXTRA_CONTEXT_BYTES));
29 ASSERT_TRUE(context != NULL);
30 uint8_t* extra = reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(context) + sizeof(unw_context_t));
34 ASSERT_TRUE(unw_getcontext(context) == 0);
40 free(context);
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Dpreemption.c35 void vlVdpPreemptionCallback(VdpDevice device, void *context) argument
45 void *context)
43 vlVdpPreemptionCallbackRegister(VdpDevice device, VdpPreemptionCallback callback, void *context) argument
/external/ppp/pppd/plugins/radius/
H A Dmd5.c8 MD5_CTX context; local
10 MD5_Init (&context);
11 MD5_Update (&context, input, inlen);
12 MD5_Final (output, &context);
/external/apache-http/src/org/apache/http/
H A DConnectionReuseStrategy.java42 * <!-- empty lines above to avoid 'svn diff' context problems -->
61 * One can use the HTTP context to retrieve additional objects that
72 * @param context the context in which the connection is being
78 boolean keepAlive(HttpResponse response, HttpContext context); argument
H A DHttpRequestInterceptor.java47 * <!-- empty lines above to avoid 'svn diff' context problems -->
66 * @param context the context for the request
71 void process(HttpRequest request, HttpContext context) argument
H A DHttpResponseInterceptor.java46 * <!-- empty lines above to avoid 'svn diff' context problems -->
65 * @param context the context for the request
70 void process(HttpResponse response, HttpContext context) argument

Completed in 1053 milliseconds

1234567891011>>