/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_linux.h | 85 // Call cb for each region mapped by map. 86 void ForEachMappedRegion(link_map *map, void (*cb)(const void *, uptr));
|
sanitizer_procmaps.h | 85 // |cb| is a tool-specific callback that fills the |stats| array containing 87 void GetMemoryProfile(fill_profile_f cb, uptr *stats, uptr stats_size);
|
/external/compiler-rt/lib/tsan/go/ |
test.c | 16 void __tsan_init(void **thr, void (*cb)(void*));
|
/external/curl/lib/ |
hash.h | 81 void (*cb)(void *user, void *ptr));
|
/external/iw/ |
coalesce.c | 19 static int handle_coalesce_enable(struct nl80211_state *state, struct nl_cb *cb, 188 handle_coalesce_disable(struct nl80211_state *state, struct nl_cb *cb, 277 static int handle_coalesce_show(struct nl80211_state *state, struct nl_cb *cb, 281 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM,
|
/external/libevent/ |
event_iocp.c | 48 event_overlapped_init(struct event_overlapped *o, iocp_callback cb) 51 o->cb = cb; 59 eo->cb(eo, completion_key, nBytes, ok);
|
/external/libevent/include/event2/ |
http.h | 212 @param cb the callback function that gets invoked on requesting path 217 void (*cb)(struct evhttp_request *, void *), void *cb_arg); 230 @param cb the callback to invoke for any unmatched requests 234 void (*cb)(struct evhttp_request *, void *), void *arg); 398 void (*cb)(struct evhttp_request *, void *), void *arg); 402 * @param cb will be called after every read of data with the same argument 408 void (*cb)(struct evhttp_request *, void *));
|
/external/libnl/include/ |
netlink-local.h | 87 int (*cb)(long, const char *)); 111 static inline int nl_cb_call(struct nl_cb *cb, int type, struct nl_msg *msg) 113 return cb->cb_set[type](msg, cb->cb_args[type]);
|
/external/libnl/lib/route/ |
class_obj.c | 166 * @arg cb callback function 170 void (*cb)(struct nl_object *, void *), void *arg) 182 nl_cache_foreach_filter(cache, (struct nl_object *) filter, cb, arg); 191 * @arg cb callback function 195 void (*cb)(struct nl_object *, void *), void *arg) 206 nl_cache_foreach_filter(cache, (struct nl_object *) filter, cb, arg);
|
qdisc_obj.c | 131 * @arg cb callback function 135 void (*cb)(struct nl_object *, void *), void *arg) 147 nl_cache_foreach_filter(cache, (struct nl_object *) filter, cb, arg); 157 * @arg cb callback function 161 void (*cb)(struct nl_object *, void *), void *arg) 172 nl_cache_foreach_filter(cache, (struct nl_object *) filter, cb, arg);
|
/external/libvpx/libvpx/vpx_scale/ |
yv12config.h | 83 // be a power of 2, from 32 to 1024. 0 sets legacy alignment. If cb is not 85 // If cb is not NULL, libvpx will call cb with minimum size in bytes needed 86 // to decode the current frame. If cb is NULL, libvpx will allocate memory 97 vpx_get_frame_buffer_cb_fn_t cb,
|
/external/libweave/src/commands/ |
command_queue.cc | 80 for (const auto& cb : on_command_added_) 81 cb.Run(pair.first->second.get()); 113 for (const auto& cb : on_command_removed_) 114 cb.Run(instance.get());
|
/external/libweave/src/ |
component_manager_impl.cc | 70 for (const auto& cb : on_componet_tree_changed_) 71 cb.Run(); 96 for (const auto& cb : on_componet_tree_changed_) 97 cb.Run(); 117 for (const auto& cb : on_componet_tree_changed_) 118 cb.Run(); 148 for (const auto& cb : on_componet_tree_changed_) 149 cb.Run(); 187 for (const auto& cb : on_trait_changed_) 188 cb.Run() [all...] |
/external/ltrace/ |
vect.c | 172 enum callback_status (*cb)(void *, void *), void *data) 179 switch ((*cb)(slt, data)) { 200 enum callback_status (*cb)(const void *, void *), void *data) 203 (void *)cb, data);
|
/external/mesa3d/src/gallium/auxiliary/cso_cache/ |
cso_cache.h | 152 cso_sanitize_callback cb,
|
/external/webrtc/webrtc/base/ |
array_view_unittest.cc | 134 const rtc::Buffer cb = "very const"; local 135 Call<const uint8_t>(cb); 136 // Call<uint8_t>(cb); // Compile error, because can't drop const. 137 ArrayView<const uint8_t> z = cb; 139 EXPECT_EQ(cb.data(), z.data()); 140 // ArrayView<uint8_t> w = cb; // Compile error, because can't drop const.
|
/external/webrtc/webrtc/test/channel_transport/ |
udp_socket_posix.h | 36 bool SetCallback(CallbackObj obj, IncomingSocketCallback cb) override;
|
/external/wpa_supplicant_8/src/radius/ |
radius_client.h | 245 void (*cb)(const u8 *addr, void *ctx),
|
/external/wpa_supplicant_8/src/utils/ |
http-utils.h | 58 int (*cb)(void *ctx, struct http_cert *cert),
|
/frameworks/support/design/src/android/support/design/internal/ |
BottomNavigationPresenter.java | 62 public void setCallback(Callback cb) {}
|
/hardware/bsp/intel/peripheral/libupm/src/grove/ |
grove.h | 395 void installISR(mraa::Edge level, IsrCallback *cb);
|
/hardware/bsp/intel/peripheral/libupm/src/hcsr04/ |
hcsr04.cxx | 38 HCSR04::HCSR04 (uint8_t triggerPin, uint8_t echoPin, IsrCallback *cb)
|
/hardware/qcom/camera/QCamera2/stack/mm-lib2d-interface/inc/ |
mm_lib2d.h | 194 * cb - callback function that will be called on completion of this job 205 int jobid, void *userdata, lib2d_client_cb cb);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
CharsetDecoder2Test.java | 259 CharBuffer cb = decoder.decode(ByteBuffer.wrap(bytes)); local 260 fail("No exception thrown on " + Arrays.toString(bytes) + " '" + cb + "'"); 272 CharBuffer cb = decoder.decode(bb); local 273 fail("No exception thrown on " + Arrays.toString(bytes) + " '" + cb + "'");
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/ |
EmailServiceProxy.java | 110 * @param cb The {@link IEmailServiceCallback} to use for this operation. 117 public void loadAttachment(final IEmailServiceCallback cb, final long accountId, 124 mService.loadAttachment(cb, accountId, attachmentId, background); 128 if (cb != null) { 129 cb.loadAttachmentStatus(-1, attachmentId,
|