HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 76 - 100 of 2436) sorted by null

1 2 34 5 6 7 8 91011>>

  /hardware/intel/img/hwcomposer/moorefield_hdmi/include/
IHdcpControl.h 30 virtual bool startHdcpAsync(HdcpStatusCallback cb, void *userData) = 0;
  /hardware/interfaces/tests/foo/1.0/
IFooCallback.hal 22 //heyItsMe(IFoo cb);
23 heyItsYou(IFooCallback cb);
24 heyItsYouIsntIt(IFooCallback cb) generates (bool yesOrNo);
  /packages/apps/Nfc/nci/jni/
IntervalTimer.h 29 bool set(int ms, TIMER_FUNC cb);
  /system/bt/hci/include/
btsnoop_mem.h 32 void btsnoop_mem_set_callback(btsnoop_data_cb cb);
  /system/core/libutils/include/utils/
misc.h 35 void add_sysprop_change_callback(sysprop_change_callback cb, int priority);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mn10300/
i36434.d 9 800007a: cb nop
16 8000087: cb nop
  /external/protobuf/js/
gulpfile.js 5 function exec(command, cb) {
6 execFile('sh', ['-c', command], cb);
11 gulp.task('genproto_closure', function (cb) {
16 cb(err);
20 gulp.task('genproto_commonjs', function (cb) {
25 cb(err);
29 gulp.task('dist', function (cb) {
36 cb(err);
40 gulp.task('commonjs_asserts', function (cb) {
45 cb(err)
    [all...]
  /external/iptables/extensions/
libip6t_DNPT.c 33 static void DNPT_parse(struct xt_option_call *cb)
35 struct ip6t_npt_tginfo *npt = cb->data;
37 xtables_option_parse(cb);
38 switch (cb->entry->id) {
40 npt->src_pfx = cb->val.haddr;
41 npt->src_pfx_len = cb->val.hlen;
44 npt->dst_pfx = cb->val.haddr;
45 npt->dst_pfx_len = cb->val.hlen;
libip6t_SNPT.c 33 static void SNPT_parse(struct xt_option_call *cb)
35 struct ip6t_npt_tginfo *npt = cb->data;
37 xtables_option_parse(cb);
38 switch (cb->entry->id) {
40 npt->src_pfx = cb->val.haddr;
41 npt->src_pfx_len = cb->val.hlen;
44 npt->dst_pfx = cb->val.haddr;
45 npt->dst_pfx_len = cb->val.hlen;
libxt_length.c 23 static void length_parse(struct xt_option_call *cb)
25 struct xt_length_info *info = cb->data;
27 xtables_option_parse(cb);
28 info->min = cb->val.u16_range[0];
29 info->max = cb->val.u16_range[0];
30 if (cb->nvals >= 2)
31 info->max = cb->val.u16_range[1];
32 if (cb->invert)
  /external/libevent/include/event2/
event_compat.h 186 #define evtimer_set(ev, cb, arg) event_set((ev), -1, 0, (cb), (arg))
187 #define evsignal_set(ev, x, cb, arg) \
188 event_set((ev), (x), EV_SIGNAL|EV_PERSIST, (cb), (arg))
199 #define timeout_set(ev, cb, arg) event_set((ev), -1, 0, (cb), (arg))
213 #define signal_set(ev, x, cb, arg) \
214 event_set((ev), (x), EV_SIGNAL|EV_PERSIST, (cb), (arg))
  /external/llvm/tools/llvm-c-test/
helpers.c 21 void llvm_tokenize_stdin(void (*cb)(char **tokens, int ntokens)) {
38 cb(tokbuf, c);
  /external/python/cpython2/Lib/ctypes/test/
test_random_things.py 49 cb = CFUNCTYPE(c_int, c_int)(callback_func)
50 out = self.capture_stderr(cb, 42)
55 cb = CFUNCTYPE(c_int, c_int)(callback_func)
56 out = self.capture_stderr(cb, 0)
61 cb = CFUNCTYPE(c_int, c_double)(callback_func)
62 out = self.capture_stderr(cb, 0.0)
67 cb = CFUNCTYPE(c_int, c_char_p)(callback_func)
68 out = self.capture_stderr(cb, "spam")
test_simplesubclasses.py 25 cb = proto(func)
26 self.assertEqual(None, cb())
35 cb = CFUNCTYPE(None, MyInt)(func)
37 self.assertEqual(None, cb(42))
40 cb = CFUNCTYPE(c_int, c_int)(func)
42 self.assertEqual(42, cb(42))
  /external/python/cpython3/Lib/ctypes/test/
test_random_things.py 49 cb = CFUNCTYPE(c_int, c_int)(callback_func)
50 out = self.capture_stderr(cb, 42)
55 cb = CFUNCTYPE(c_int, c_int)(callback_func)
56 out = self.capture_stderr(cb, 0)
61 cb = CFUNCTYPE(c_int, c_double)(callback_func)
62 out = self.capture_stderr(cb, 0.0)
67 cb = CFUNCTYPE(c_int, c_char_p)(callback_func)
68 out = self.capture_stderr(cb, b"spam")
test_simplesubclasses.py 23 cb = proto(func)
24 self.assertEqual(None, cb())
33 cb = CFUNCTYPE(None, MyInt)(func)
35 self.assertEqual(None, cb(42))
38 cb = CFUNCTYPE(c_int, c_int)(func)
40 self.assertEqual(42, cb(42))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
subscribe.h 79 pa_operation* pa_context_subscribe(pa_context *c, pa_subscription_mask_t m, pa_context_success_cb_t cb, void *userdata);
82 void pa_context_set_subscribe_callback(pa_context *c, pa_context_subscribe_cb_t cb, void *userdata);
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_random_things.py 50 cb = CFUNCTYPE(c_int, c_int)(callback_func)
51 out = self.capture_stderr(cb, 42)
56 cb = CFUNCTYPE(c_int, c_int)(callback_func)
57 out = self.capture_stderr(cb, 0)
62 cb = CFUNCTYPE(c_int, c_double)(callback_func)
63 out = self.capture_stderr(cb, 0.0)
68 cb = CFUNCTYPE(c_int, c_char_p)(callback_func)
69 out = self.capture_stderr(cb, "spam")
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_random_things.py 50 cb = CFUNCTYPE(c_int, c_int)(callback_func)
51 out = self.capture_stderr(cb, 42)
56 cb = CFUNCTYPE(c_int, c_int)(callback_func)
57 out = self.capture_stderr(cb, 0)
62 cb = CFUNCTYPE(c_int, c_double)(callback_func)
63 out = self.capture_stderr(cb, 0.0)
68 cb = CFUNCTYPE(c_int, c_char_p)(callback_func)
69 out = self.capture_stderr(cb, "spam")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_random_things.py 50 cb = CFUNCTYPE(c_int, c_int)(callback_func)
51 out = self.capture_stderr(cb, 42)
56 cb = CFUNCTYPE(c_int, c_int)(callback_func)
57 out = self.capture_stderr(cb, 0)
62 cb = CFUNCTYPE(c_int, c_double)(callback_func)
63 out = self.capture_stderr(cb, 0.0)
68 cb = CFUNCTYPE(c_int, c_char_p)(callback_func)
69 out = self.capture_stderr(cb, "spam")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_random_things.py 50 cb = CFUNCTYPE(c_int, c_int)(callback_func)
51 out = self.capture_stderr(cb, 42)
56 cb = CFUNCTYPE(c_int, c_int)(callback_func)
57 out = self.capture_stderr(cb, 0)
62 cb = CFUNCTYPE(c_int, c_double)(callback_func)
63 out = self.capture_stderr(cb, 0.0)
68 cb = CFUNCTYPE(c_int, c_char_p)(callback_func)
69 out = self.capture_stderr(cb, "spam")
  /system/bt/include/hardware/
ble_advertiser.h 63 virtual void GetOwnAddress(uint8_t advertiser_id, GetAddressCallback cb) = 0;
67 ParametersCallback cb) = 0;
71 std::vector<uint8_t> data, StatusCallback cb) = 0;
74 virtual void Enable(uint8_t advertiser_id, bool enable, StatusCallback cb,
81 virtual void StartAdvertising(uint8_t advertiser_id, StatusCallback cb,
100 StatusCallback cb) = 0;
104 StatusCallback cb) = 0;
107 StatusCallback cb) = 0;
  /external/cn-cbor/test/
cbor_test.c 114 cn_cbor *cb; local
123 cb = cn_cbor_decode(b.ptr, b.sz CONTEXT_NULL, &err);
126 ASSERT_NOT_NULL(cb);
128 enc_sz = cn_cbor_encoder_write(encoded, 0, sizeof(encoded), cb);
131 cn_cbor_free(cb CONTEXT_NULL);
162 cn_cbor *cb; local
172 cb = cn_cbor_decode(b.ptr, b.sz CONTEXT_NULL, &err);
175 ASSERT_NOT_NULL(cb);
177 enc_sz = cn_cbor_encoder_write(encoded, 0, sizeof(encoded), cb);
181 cn_cbor_free(cb CONTEXT_NULL)
224 cn_cbor *cb; local
256 cn_cbor *cb; local
279 cn_cbor *cb; local
    [all...]
  /art/test/983-source-transform-verify/
source_transform.cc 69 jvmtiEventCallbacks cb; local
70 memset(&cb, 0, sizeof(cb));
71 cb.ClassFileLoadHook = CheckDexFileHook;
72 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetEventCallbacks(&cb, sizeof(cb)));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector_interface.h 81 virtual void MutexInit(DDCallback *cb, DDMutex *m) {}
82 virtual void MutexBeforeLock(DDCallback *cb, DDMutex *m, bool wlock) {}
83 virtual void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock,
85 virtual void MutexBeforeUnlock(DDCallback *cb, DDMutex *m, bool wlock) {}
86 virtual void MutexDestroy(DDCallback *cb, DDMutex *m) {}
88 virtual DDReport *GetReport(DDCallback *cb) { return nullptr; }

Completed in 398 milliseconds

1 2 34 5 6 7 8 91011>>