HomeSort by relevance Sort by last modified time
    Searched refs:callback (Results 426 - 450 of 2081) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/test/intltest/
convtest.h 83 ToUnicodeCase(ConversionCase &cc, UConverterToUCallback callback, const char *option);
86 FromUnicodeCase(ConversionCase &cc, UConverterFromUCallback callback, const char *option);
  /external/libchrome/base/android/
java_exception_reporter.cc 35 void SetJavaExceptionCallback(void (*callback)(const char*)) {
37 g_java_exception_callback = callback;
  /external/libchrome/crypto/
nss_util_internal.h 12 #include "base/callback.h"
53 // loaded and |callback| is non-null, the |callback| will be run once the slot
56 base::OnceCallback<void(ScopedPK11Slot)> callback) WARN_UNUSED_RESULT;
101 // loaded and |callback| is non-null, the |callback| will be run once the slot
105 base::OnceCallback<void(ScopedPK11Slot)> callback) WARN_UNUSED_RESULT;
  /external/libchrome/ipc/
ipc_perftest_util.h 10 #include "base/callback.h"
107 void Ping(const std::string& value, PingCallback callback) override;
109 void SyncPing(const std::string& value, PingCallback callback) override;
  /external/libchrome/mojo/public/cpp/bindings/lib/
sync_event_watcher.cc 15 const base::Closure& callback)
17 callback_(callback),
sync_handle_watcher.cc 14 const SyncHandleRegistry::HandleCallback& callback)
17 callback_(callback),
  /external/libchrome/mojo/public/java/system/src/org/chromium/mojo/system/impl/
WatcherImpl.java 17 private Callback mCallback;
20 public int start(Handle handle, Core.HandleSignals signals, Callback callback) {
29 if (result == MojoResult.OK) mCallback = callback;
  /external/libunwind/src/
os-qnx.c 31 static int callback(const struct dl_phdr_info *info, size_t size, void *data) function
90 if (dl_iterate_phdr (callback, &map_list) != 0)
  /external/libxcam/xcore/
poll_thread.h 63 bool set_poll_callback (PollCallback *callback);
64 bool set_stats_callback (StatsCallback *callback);
  /external/libxml2/python/tests/
pushSAX.py 10 class callback: class in inherits:
43 handler = callback()
pushSAXhtml.py 10 class callback: class in inherits:
43 handler = callback()
  /external/mdnsresponder/mDNSShared/
dnssd_clientshim.c 20 * function, and when mDNSCore calls the shim's callback, we call through to the client's callback.
57 DNSServiceRegisterReply callback; member in struct:__anon32628
69 DNSServiceBrowseReply callback; member in struct:__anon32629
78 DNSServiceGetAddrInfoReply callback; member in struct:__anon32630
85 DNSServiceResolveReply callback; member in struct:__anon32631
96 DNSServiceQueryRecordReply callback; member in struct:__anon32632
133 DNSServiceDomainEnumReply callback,
140 (void)callback; // Unused
196 if (x->callback)
    [all...]
  /external/nanopb-c/
pb_decode.h 16 * 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
31 /* Callback pointer is not used in buffer-only configuration.
33 * gives an error if someone tries to assign callback function.
35 int *callback; member in struct:pb_istream_s
37 bool (*callback)(pb_istream_t *stream, pb_byte_t *buf, size_t count);
40 void *state; /* Free field for use by callback implementation */
55 * Callback fields of the destination structure must be initialized by caller.
pb_encode.h 16 * 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.
30 /* Callback pointer is not used in buffer-only configuration.
32 * gives an error if someone tries to assign callback function.
36 int *callback; member in struct:pb_ostream_s
38 bool (*callback)(pb_ostream_t *stream, const pb_byte_t *buf, size_t count);
40 void *state; /* Free field for use by callback implementation. */
123 * structure. Call this from the callback before writing out field contents. */
127 * if you want to write out packed arrays from a callback field. *
    [all...]
  /external/nanopb-c/tests/basic_stream/
decode_stream.c 58 bool callback(pb_istream_t *stream, uint8_t *buf, size_t count) function
73 pb_istream_t stream = {&callback, NULL, SIZE_MAX};
  /external/perfetto/src/perfetto_cmd/
trigger_producer.cc 31 std::function<void(bool)> callback,
34 callback_(std::move(callback)),
  /external/protobuf/src/google/protobuf/
service.h 105 #include <google/protobuf/stubs/callback.h>
185 // service->CallMethod(method, *request, response, callback);
228 // canceled, the "done" callback will still be called and the RpcController
245 // final "done" callback.
248 // Asks that the given callback be called when the RPC is canceled. The
249 // callback will always be called exactly once. If the RPC completes without
250 // being canceled, the callback will be called after completion. If the RPC
251 // has already been canceled when NotifyOnCancel() is called, the callback
255 virtual void NotifyOnCancel(Closure* callback) = 0;
268 // service->MyMethod(request, &response, callback);
    [all...]
  /external/python/cpython2/Include/
weakrefobject.h 57 PyObject *callback);
59 PyObject *callback);
  /external/python/cpython2/PC/bdist_wininst/
archive.h 91 NOTIFYPROC callback);
95 NOTIFYPROC callback);
  /external/python/cpython3/Include/
weakrefobject.h 59 PyObject *callback);
61 PyObject *callback);
  /external/python/cpython3/Lib/asyncio/
base_futures.py 40 def format_cb(callback):
41 return format_helpers._format_callback_source(callback, ())
  /external/python/cpython3/PC/bdist_wininst/
archive.h 90 NOTIFYPROC callback);
94 NOTIFYPROC callback);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPackageInstaller.java 36 PackageInstaller.SessionCallback callback; field in class:ShadowPackageInstaller.CallbackInfo
47 @NonNull PackageInstaller.SessionCallback callback, @NonNull Handler handler) {
49 callbackInfo.callback = callback;
72 callbackInfo.callback.onCreated(sessionInfo.sessionId);
89 callbackInfo.callback.onFinished(sessionId, false);
114 callbackInfo.callback.onProgressChanged(sessionId, progress);
138 callbackInfo.callback.onFinished(sessionId, success);
  /external/skia/src/core/
SkBigPicture.cpp 27 void SkBigPicture::playback(SkCanvas* canvas, AbortCallback* callback) const {
39 callback);
  /external/skqp/src/core/
SkBigPicture.cpp 27 void SkBigPicture::playback(SkCanvas* canvas, AbortCallback* callback) const {
39 callback);

Completed in 578 milliseconds

<<11121314151617181920>>