HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 101 - 125 of 1492) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/iptables/extensions/
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/chromium_org/media/base/
bind_to_loop.h 57 const base::Callback<void()>& cb) {
58 loop->PostTask(FROM_HERE, base::Bind(cb));
67 const base::Callback<void(A1)>& cb, A1 a1) {
68 loop->PostTask(FROM_HERE, base::Bind(cb, internal::TrampolineForward(a1)));
77 const base::Callback<void(A1, A2)>& cb, A1 a1, A2 a2) {
78 loop->PostTask(FROM_HERE, base::Bind(cb, internal::TrampolineForward(a1),
88 const base::Callback<void(A1, A2, A3)>& cb, A1 a1, A2 a2, A3 a3) {
89 loop->PostTask(FROM_HERE, base::Bind(cb, internal::TrampolineForward(a1),
99 const base::Callback<void(A1, A2, A3, A4)>& cb, A1 a1, A2 a2, A3 a3,
101 loop->PostTask(FROM_HERE, base::Bind(cb, internal::TrampolineForward(a1)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
AndroidCameraManagerImpl.java 131 android.hardware.Camera camera, Object cb) {
132 camera.setAutoFocusMoveCallback((AutoFocusMoveCallback) cb);
386 public boolean reconnect(Handler handler, CameraOpenErrorCallback cb) {
390 CameraOpenErrorCallbackForward.getNewInstance(handler, cb);
434 Handler handler, CameraPreviewDataCallback cb) {
437 PreviewCallbackForward.getNewInstance(handler, this, cb)).sendToTarget();
442 Handler handler, CameraPreviewDataCallback cb) {
445 PreviewCallbackForward.getNewInstance(handler, this, cb)).sendToTarget();
454 public void autoFocus(Handler handler, CameraAFCallback cb) {
457 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/ppapi/tests/
test_tcp_socket.cc 71 TestCompletionCallback cb(instance_->pp_instance(), callback_type());
73 cb.WaitForResult(socket.Connect(addr_, cb.GetCallback()));
74 CHECK_CALLBACK_BEHAVIOR(cb);
75 ASSERT_EQ(PP_OK, cb.result());
91 TestCompletionCallback cb(instance_->pp_instance(), callback_type());
96 cb.WaitForResult(socket.Bind(any_port_address, cb.GetCallback()));
97 CHECK_CALLBACK_BEHAVIOR(cb);
98 ASSERT_EQ(PP_OK, cb.result())
    [all...]
  /external/chromium_org/net/quic/test_tools/
delayed_verify_strike_register_client.h 30 ResultCallback* cb) OVERRIDE;
46 : nonce(in_nonce.as_string()), now(in_now), cb(in_cb) {
51 ResultCallback* cb; member in struct:net::test::DelayedVerifyStrikeRegisterClient::VerifyArgs
  /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);
  /prebuilts/gcc/linux-x86/host/x86_64-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);
  /development/ndk/platforms/android-9/include/android/
storage_manager.h 104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);
  /external/chromium_org/cc/resources/
texture_mailbox_deleter_unittest.cc 27 scoped_ptr<SingleReleaseCallback> cb = local
40 cb->Run(0, false);

Completed in 1105 milliseconds

1 2 3 45 6 7 8 91011>>