Searched defs:callback (Results 1 - 25 of 318) sorted by relevance

1234567891011>>

/external/v8/test/webkit/fast/js/
H A DPromise-resolve-with-then-exception.js28 var callback; variable
/external/v8/test/webkit/
H A Dcached-call-uninitialized-arguments.js30 function callback(element, index, array, arg4, arg5, arg6) {
54 arr.forEach(callback);
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Dpreemption.c32 * A callback to notify the client application that a device's display has
41 * Configure the display preemption callback.
44 VdpPreemptionCallback callback,
43 vlVdpPreemptionCallbackRegister(VdpDevice device, VdpPreemptionCallback callback, void *context) argument
/external/libxml2/python/tests/
H A Dctxterror.py17 def callback(arg,msg,severity,reserved): function
24 parserCtxt.setErrorHandler(callback, "-->")
25 if parserCtxt.getErrorHandler() != (callback,"-->"):
42 parserCtxt.setErrorHandler(callback, "-->")
H A Derror.py14 def callback(ctx, str): function
20 libxml2.registerErrorHandler(callback, "-->")
H A Dxpathleak.py28 def callback(ctx, str): function
33 libxml2.registerErrorHandler(callback, "-->")
H A Dindexes.py11 class callback: class in inherits:
61 handler = callback(0, 13, 27, 198, 183)
84 handler = callback(43, 57, 71, 198, 183)
H A DpushSAX.py10 class callback: class in inherits:
43 handler = callback()
H A DpushSAXhtml.py10 class callback: class in inherits:
43 handler = callback()
H A Dreader2.py30 def callback(ctx, str): function
33 libxml2.registerErrorHandler(callback, "")
H A Dreader6.py87 def callback(ctx, str): function
90 libxml2.registerErrorHandler(callback, "")
/external/nanopb-c/
H A Dpb_decode.h16 * a callback function to read the bytes from your storage, which can be
19 * The callback must conform to these rules:
24 * 3) Your callback may be used with substreams, in which case bytes_left
33 * gives an error if someone tries to assign callback function.
35 int *callback; member in struct:_pb_istream_t
37 bool (*callback)(pb_istream_t *stream, uint8_t *buf, size_t count);
40 void *state; /* Free field for use by callback implementation */
H A Dpb_encode.h16 * a callback function to write the bytes to your storage, which can be
19 * The callback must conform to these rules:
23 * 3) pb_write will update bytes_written after your callback runs.
32 * gives an error if someone tries to assign callback function.
36 int *callback; member in struct:_pb_ostream_t
38 bool (*callback)(pb_ostream_t *stream, const uint8_t *buf, size_t count);
40 void *state; /* Free field for use by callback implementation. */
117 * structure. Call this from the callback before writing out field contents. */
121 * if you want to write out packed arrays from a callback field. */
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DtmpCallbackHandler.java26 import javax.security.auth.callback.Callback;
27 import javax.security.auth.callback.CallbackHandler;
28 import javax.security.auth.callback.UnsupportedCallbackException;
35 public void handle(Callback[] callback) throws IOException, argument
37 if (callback == null) {
38 throw new UnsupportedCallbackException(null, "callback is null");
40 if (callback.length == 0) {
41 throw new UnsupportedCallbackException(null, "callback is empty");
/external/google-breakpad/src/processor/testdata/
H A Dlinux_test_app.cc54 static bool callback(const char *dump_path, const char *id, function in namespace:__anon5245
75 google_breakpad::ExceptionHandler eh(".", NULL, callback, NULL, true);
H A Dtest_app.cc41 static bool callback(const wchar_t *dump_path, const wchar_t *id, function in namespace:__anon5246
64 L".", NULL, callback, NULL,
/external/lldb/source/Target/
H A DThreadPlanShouldStopHere.cpp26 ThreadPlanShouldStopHere::ThreadPlanShouldStopHere(ThreadPlan *owner, ThreadPlanShouldStopHereCallback callback, void *baton) : argument
27 m_callback (callback),
42 ThreadPlanShouldStopHere::SetShouldStopHereCallback (ThreadPlanShouldStopHereCallback callback, void *baton) argument
44 m_callback = callback;
63 log->Printf ("ShouldStopHere callback found a step out plan from 0x%" PRIx64 ": %s.", current_addr, s.GetData());
67 log->Printf ("ShouldStopHere callback didn't find a step out plan from: 0x%" PRIx64 ".", current_addr);
/external/lzma/CPP/7zip/UI/Common/
H A DUpdateProduce.cpp15 IUpdateProduceCallback *callback)
35 if (callback)
36 callback->ShowDeleteFile(pair.ArcIndex);
11 UpdateProduce( const CRecordVector<CUpdatePair> &updatePairs, const CActionSet &actionSet, CRecordVector<CUpdatePair2> &operationChain, IUpdateProduceCallback *callback) argument
/external/mesa3d/src/glsl/
H A Dir_hierarchical_visitor.h161 * callback to be invoked on every node type execpt one.
163 void (*callback)(class ir_instruction *ir, void *data); member in class:ir_hierarchical_visitor
166 * Extra data parameter passed to the per-node callback function
179 void (*callback)(class ir_instruction *ir, void *data),
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DInterceptFieldEnabled.java19 void setInterceptFieldCallback(InterceptFieldCallback callback); argument
/external/deqp/framework/delibs/debase/
H A DdeDefs.c77 void deSetAssertFailureCallback (deAssertFailureCallbackFunc callback) argument
80 g_assertFailureCallback = callback;
82 DE_UNREF(callback);
91 /* Remove callback in case of the callback causes further asserts. */
92 deAssertFailureCallbackFunc callback = g_assertFailureCallback; local
94 callback(reason, file, line);
/external/elfutils/src/libdw/
H A Ddwarf_func_inline.c39 int (*callback) (Dwarf_Die *, void *); member in struct:visitor_info
66 return (*v->callback) (&die->die, v->arg);
95 int (*callback) (Dwarf_Die *, void *),
98 struct visitor_info v = { func->addr, callback, arg };
/external/elfutils/src/libdwfl/
H A Ddwfl_getdwarf.c33 int (*callback) (Dwfl_Module *, void **, member in struct:module_callback_info
46 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg);
51 int (*callback) (Dwfl_Module *, void **,
57 struct module_callback_info info = { callback, arg };
/external/elfutils/src/tests/
H A Dget-pubnames.c32 callback (Dwarf *dbg, Dwarf_Global *gl, void *arg __attribute__ ((unused))) function
86 if (dwarf_getpubnames (dbg, callback, NULL, 0) != 0)
/external/libunwind/src/
H A Dos-qnx.c31 static int callback(const struct dl_phdr_info *info, size_t size, void *data) function
90 if (dl_iterate_phdr (callback, &map_list) != 0)

Completed in 975 milliseconds

1234567891011>>