/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_dataflow.h | 50 void rc_for_all_reads_chan(struct rc_instruction * inst, rc_read_write_chan_fn cb, void * userdata); 51 void rc_for_all_writes_chan(struct rc_instruction * inst, rc_read_write_chan_fn cb, void * userdata); 55 void rc_for_all_reads_mask(struct rc_instruction * inst, rc_read_write_mask_fn cb, void * userdata); 56 void rc_for_all_writes_mask(struct rc_instruction * inst, rc_read_write_mask_fn cb, void * userdata); 60 void rc_for_all_reads_src(struct rc_instruction * inst, rc_read_src_fn cb, 67 rc_pair_read_arg_fn cb, void * userdata); 71 void rc_remap_registers(struct rc_instruction * inst, rc_remap_register_fn cb, void * userdata);
|
/external/iptables/extensions/ |
libxt_DSCP.c | 53 static void DSCP_parse(struct xt_option_call *cb) 55 struct xt_DSCP_info *dinfo = cb->data; 57 xtables_option_parse(cb); 58 switch (cb->entry->id) { 60 dinfo->dscp = class_to_dscp(cb->arg); 65 static void DSCP_check(struct xt_fcheck_call *cb) 67 if (cb->xflags == 0)
|
libxt_conntrack.c | 294 static void conntrack_parse(struct xt_option_call *cb) 296 struct xt_conntrack_info *sinfo = cb->data; 298 xtables_option_parse(cb); 299 switch (cb->entry->id) { 301 parse_states(cb->arg, sinfo); 302 if (cb->invert) 306 if (cb->invert) 308 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum = cb->val.protocol; 318 if (cb->invert) 320 sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip = cb->val.haddr.ip [all...] |
libxt_physdev.c | 39 static void physdev_parse(struct xt_option_call *cb) 41 struct xt_physdev_info *info = cb->data; 43 xtables_option_parse(cb); 44 switch (cb->entry->id) { 46 xtables_parse_interface(cb->arg, info->physindev, 48 if (cb->invert) 53 xtables_parse_interface(cb->arg, info->physoutdev, 55 if (cb->invert) 61 if (cb->invert) 66 if (cb->invert [all...] |
libxt_statistic.c | 46 static void statistic_parse(struct xt_option_call *cb) 48 struct xt_statistic_info *info = cb->data; 50 if (cb->invert) 53 xtables_option_parse(cb); 54 switch (cb->entry->id) { 56 if (strcmp(cb->arg, "random") == 0) 58 else if (strcmp(cb->arg, "nth") == 0) 62 cb->arg); 65 info->u.random.probability = lround(0x80000000 * cb->val.dbl); 73 static void statistic_check(struct xt_fcheck_call *cb) [all...] |
libxt_CLASSIFY.c | 35 static void CLASSIFY_parse(struct xt_option_call *cb) 37 struct xt_classify_target_info *clinfo = cb->data; 39 xtables_option_parse(cb); 40 if (CLASSIFY_string_to_priority(cb->arg, &clinfo->priority)) 42 "Bad class value \"%s\"", cb->arg);
|
libxt_quota.c | 44 static void quota_parse(struct xt_option_call *cb) 46 struct xt_quota_info *info = cb->data; 48 xtables_option_parse(cb); 49 if (cb->invert) 51 info->quota = cb->val.u64;
|
libxt_tos.c | 56 static void tos_mt_parse_v0(struct xt_option_call *cb) 58 struct ipt_tos_info *info = cb->data; 60 xtables_option_parse(cb); 61 if (cb->val.tos_mask != 0xFF) 65 info->tos = cb->val.tos_value; 66 if (cb->invert) 70 static void tos_mt_parse(struct xt_option_call *cb) 72 struct xt_tos_match_info *info = cb->data; 74 xtables_option_parse(cb); 75 info->tos_value = cb->val.tos_value [all...] |
libxt_CONNSECMARK.c | 36 static void CONNSECMARK_parse(struct xt_option_call *cb) 38 struct xt_connsecmark_target_info *info = cb->data; 40 xtables_option_parse(cb); 41 switch (cb->entry->id) { 51 static void CONNSECMARK_check(struct xt_fcheck_call *cb) 53 if (cb->xflags == 0)
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_dataflow.h | 50 void rc_for_all_reads_chan(struct rc_instruction * inst, rc_read_write_chan_fn cb, void * userdata); 51 void rc_for_all_writes_chan(struct rc_instruction * inst, rc_read_write_chan_fn cb, void * userdata); 55 void rc_for_all_reads_mask(struct rc_instruction * inst, rc_read_write_mask_fn cb, void * userdata); 56 void rc_for_all_writes_mask(struct rc_instruction * inst, rc_read_write_mask_fn cb, void * userdata); 60 void rc_for_all_reads_src(struct rc_instruction * inst, rc_read_src_fn cb, 67 rc_pair_read_arg_fn cb, void * userdata); 71 void rc_remap_registers(struct rc_instruction * inst, rc_remap_register_fn cb, void * userdata);
|
/external/chromium_org/media/base/ |
bind_to_loop.h | 61 const base::Callback<void()>& cb) { 62 loop->PostTask(FROM_HERE, base::Bind(cb)); 71 const base::Callback<void(A1)>& cb, A1 a1) { 72 loop->PostTask(FROM_HERE, base::Bind(cb, internal::TrampolineForward(a1))); 81 const base::Callback<void(A1, A2)>& cb, A1 a1, A2 a2) { 82 loop->PostTask(FROM_HERE, base::Bind(cb, internal::TrampolineForward(a1), 92 const base::Callback<void(A1, A2, A3)>& cb, A1 a1, A2 a2, A3 a3) { 93 loop->PostTask(FROM_HERE, base::Bind(cb, internal::TrampolineForward(a1), 103 const base::Callback<void(A1, A2, A3, A4)>& cb, A1 a1, A2 a2, A3 a3, 105 loop->PostTask(FROM_HERE, base::Bind(cb, internal::TrampolineForward(a1) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
asynctcpsocket.h | 46 virtual int Send(const void *pv, size_t cb) = 0; 53 virtual int SendTo(const void *pv, size_t cb, const SocketAddress& addr); 69 virtual int SendRaw(const void* pv, size_t cb); 72 void AppendToOutBuffer(const void* pv, size_t cb); 104 virtual int Send(const void* pv, size_t cb);
|
/packages/apps/Camera2/src/com/android/camera/ |
AndroidCameraManagerImpl.java | 131 android.hardware.Camera camera, Object cb) { 132 camera.setAutoFocusMoveCallback((AutoFocusMoveCallback) cb); 380 public boolean reconnect(Handler handler, CameraOpenErrorCallback cb) { 384 CameraOpenErrorCallbackForward.getNewInstance(handler, cb); 428 Handler handler, CameraPreviewDataCallback cb) { 431 PreviewCallbackForward.getNewInstance(handler, this, cb)).sendToTarget(); 436 Handler handler, CameraPreviewDataCallback cb) { 439 PreviewCallbackForward.getNewInstance(handler, this, cb)).sendToTarget(); 448 public void autoFocus(Handler handler, CameraAFCallback cb) { 451 AFCallbackForward.getNewInstance(handler, this, cb)).sendToTarget() [all...] |
CameraManager.java | 173 * @param cb The callback when any error happens. 176 public boolean reconnect(Handler handler, CameraOpenErrorCallback cb); 221 * @param cb The callback to be invoked when the preview data is available. 224 public void setPreviewDataCallback(Handler handler, CameraPreviewDataCallback cb); 230 * @param cb The callback to be invoked when the preview data is available. 233 public void setPreviewDataCallbackWithBuffer(Handler handler, CameraPreviewDataCallback cb); 246 * @param cb The auto-focus callback. 248 public void autoFocus(Handler handler, CameraAFCallback cb); 259 * @param cb The callback to be invoked when the preview data is available. 262 public void setAutoFocusMoveCallback(Handler handler, CameraAFMoveCallback cb); [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/dsa/ |
dsa_depr.c | 92 BN_GENCB cb; local 97 BN_GENCB_set_old(&cb, callback, cb_arg); 100 counter_ret, h_ret, &cb))
|
/external/chromium_org/third_party/openssl/openssl/crypto/rsa/ |
rsa_depr.c | 74 BN_GENCB cb; local 90 BN_GENCB_set_old(&cb, callback, cb_arg); 92 if(RSA_generate_key_ex(rsa, bits, e, &cb)) {
|
/external/openssl/crypto/dsa/ |
dsa_depr.c | 92 BN_GENCB cb; local 97 BN_GENCB_set_old(&cb, callback, cb_arg); 100 counter_ret, h_ret, &cb))
|
/external/openssl/crypto/rsa/ |
rsa_depr.c | 74 BN_GENCB cb; local 90 BN_GENCB_set_old(&cb, callback, cb_arg); 92 if(RSA_generate_key_ex(rsa, bits, e, &cb)) {
|
/external/qemu/block/ |
raw-posix-aio.h | 32 BlockDriverCompletionFunc *cb, void *opaque, int type); 35 BlockDriverCompletionFunc *cb, void *opaque); 41 BlockDriverCompletionFunc *cb, void *opaque, int type);
|
/external/qemu/ |
monitor-android.h | 6 monitor_fake_new(void* opaque, MonitorFakeFunc cb) 10 assert(cb != NULL); 13 mon->fake_func = cb;
|
/hardware/ti/omap4xxx/ |
tm.c | 25 char *cf, *cb; local 48 cb = ptr[5]; 49 cb[60] = 'a';
|
/external/bzip2/ |
bzmore | 22 cb='cbreak'; ncb='-cbreak' 25 cb='min 1 -icanon'; ncb='icanon eof ^d' 45 stty $cb -echo 2>/dev/null
|
/external/openssh/openbsd-compat/ |
openssl-compat.c | 73 BN_is_prime_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, void *cb) 75 if (cb != NULL) 83 RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *bn_e, void *cb) 88 if (cb != NULL) 108 int seed_len, int *counter_ret, unsigned long *h_ret, void *cb) 112 if (cb != NULL)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/ |
mainloop-api.h | 89 pa_io_event* (*io_new)(pa_mainloop_api*a, int fd, pa_io_event_flags_t events, pa_io_event_cb_t cb, void *userdata); 95 void (*io_set_destroy)(pa_io_event *e, pa_io_event_destroy_cb_t cb); 98 pa_time_event* (*time_new)(pa_mainloop_api*a, const struct timeval *tv, pa_time_event_cb_t cb, void *userdata); 104 void (*time_set_destroy)(pa_time_event *e, pa_time_event_destroy_cb_t cb); 107 pa_defer_event* (*defer_new)(pa_mainloop_api*a, pa_defer_event_cb_t cb, void *userdata); 113 void (*defer_set_destroy)(pa_defer_event *e, pa_defer_event_destroy_cb_t cb);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
mainloop-api.h | 89 pa_io_event* (*io_new)(pa_mainloop_api*a, int fd, pa_io_event_flags_t events, pa_io_event_cb_t cb, void *userdata); 95 void (*io_set_destroy)(pa_io_event *e, pa_io_event_destroy_cb_t cb); 98 pa_time_event* (*time_new)(pa_mainloop_api*a, const struct timeval *tv, pa_time_event_cb_t cb, void *userdata); 104 void (*time_set_destroy)(pa_time_event *e, pa_time_event_destroy_cb_t cb); 107 pa_defer_event* (*defer_new)(pa_mainloop_api*a, pa_defer_event_cb_t cb, void *userdata); 113 void (*defer_set_destroy)(pa_defer_event *e, pa_defer_event_destroy_cb_t cb);
|