HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 126 - 150 of 2026) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
AccessibilityController.java 58 public void addStateChangedCallback(AccessibilityStateChangedCallback cb) {
59 mChangeCallbacks.add(cb);
60 cb.onStateChanged(mAccessibilityEnabled, mTouchExplorationEnabled);
63 public void removeStateChangedCallback(AccessibilityStateChangedCallback cb) {
64 mChangeCallbacks.remove(cb);
  /libcore/ojluni/src/main/java/sun/nio/cs/
StreamDecoder.java 127 char cb[] = new char[2]; local
128 int n = read(cb, 0, 2);
133 leftoverChar = cb[1];
137 return cb[0];
314 CharBuffer cb = CharBuffer.wrap(cbuf, off, end - off); local
315 if (cb.position() != 0)
316 // Ensure that cb[0] == cbuf[off]
317 cb = cb.slice();
321 CoderResult cr = decoder.flush(cb);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector2.cc 93 void MutexInit(DDCallback *cb, DDMutex *m);
94 void MutexBeforeLock(DDCallback *cb, DDMutex *m, bool wlock);
95 void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock,
97 void MutexBeforeUnlock(DDCallback *cb, DDMutex *m, bool wlock);
98 void MutexDestroy(DDCallback *cb, DDMutex *m);
100 DDReport *GetReport(DDCallback *cb);
104 u32 allocateId(DDCallback *cb);
153 void DD::MutexInit(DDCallback *cb, DDMutex *m) {
154 VPrintf(2, "#%llu: DD::MutexInit(%p)\n", cb->lt->ctx, m);
175 u32 DD::allocateId(DDCallback *cb) {
    [all...]
  /system/bt/service/ipc/binder/
bluetooth_low_energy_binder_server.cpp 162 auto cb = GetLECallback(client_id);
163 if (!cb.get()) {
168 cb->OnMultiAdvertiseCallback(status, true /* is_start */, settings_copy);
201 auto cb = GetLECallback(client_id);
202 if (!cb.get()) {
209 cb->OnMultiAdvertiseCallback(status, false /* is_start */, settings_copy);
226 auto cb = GetLECallback(client->GetInstanceId()); local
227 if (!cb.get()) {
232 cb->OnConnectionState(status, client_id, address, connected);
242 auto cb = GetLECallback(client_id) local
258 auto cb = GetLECallback(client->GetInstanceId()); local
269 auto cb = GetCallback(client_id); local
    [all...]
  /external/iptables/extensions/
libxt_conntrack.c 337 static void conntrack_parse(struct xt_option_call *cb)
339 struct xt_conntrack_info *sinfo = cb->data;
341 xtables_option_parse(cb);
342 switch (cb->entry->id) {
344 parse_states(cb->arg, sinfo);
345 if (cb->invert)
349 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum = cb->val.protocol;
350 if (cb->invert)
360 if (cb->invert)
362 sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip = cb->val.haddr.ip
    [all...]
libxt_socket.c 60 static void socket_mt_parse(struct xt_option_call *cb)
62 struct xt_socket_mtinfo1 *info = cb->data;
64 xtables_option_parse(cb);
65 switch (cb->entry->id) {
72 static void socket_mt_parse_v2(struct xt_option_call *cb)
74 struct xt_socket_mtinfo2 *info = cb->data;
76 xtables_option_parse(cb);
77 switch (cb->entry->id) {
87 static void socket_mt_parse_v3(struct xt_option_call *cb)
89 struct xt_socket_mtinfo2 *info = cb->data
    [all...]
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...]
libip6t_NETMAP.c 37 static void NETMAP_parse(struct xt_option_call *cb)
39 struct nf_nat_range *range = cb->data;
42 xtables_option_parse(cb);
45 range->min_addr.ip6[i] = cb->val.haddr.ip6[i] &
46 cb->val.hmask.ip6[i];
48 ~cb->val.hmask.ip6[i];
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)
libip6t_REJECT.c 79 static void REJECT_parse(struct xt_option_call *cb)
81 struct ip6t_reject_info *reject = cb->data;
84 xtables_option_parse(cb);
87 cb->arg, strlen(cb->arg)) == 0 ||
89 cb->arg, strlen(cb->arg)) == 0) {
94 "unknown reject type \"%s\"", cb->arg);
  /external/boringssl/src/crypto/pem/
pem_all.c 156 RSA *PEM_read_bio_RSAPrivateKey(BIO *bp, RSA **rsa, pem_password_cb *cb,
160 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
166 RSA *PEM_read_RSAPrivateKey(FILE *fp, RSA **rsa, pem_password_cb *cb,
170 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u);
197 DSA *PEM_read_bio_DSAPrivateKey(BIO *bp, DSA **dsa, pem_password_cb *cb,
201 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
212 DSA *PEM_read_DSAPrivateKey(FILE *fp, DSA **dsa, pem_password_cb *cb,
216 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u);
242 EC_KEY *PEM_read_bio_ECPrivateKey(BIO *bp, EC_KEY **key, pem_password_cb *cb,
246 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u)
    [all...]
  /external/eigen/blas/f2c/
lsame.c 15 logical lsame_(char *ca, char *cb, ftnlen ca_len, ftnlen cb_len)
34 /* LSAME returns .TRUE. if CA is the same letter as CB regardless of */
42 /* CB (input) CHARACTER*1 */
43 /* CA and CB specify the single characters to be compared. */
54 ret_val = *(unsigned char *)ca == *(unsigned char *)cb;
69 intb = *(unsigned char *)cb;
  /external/libevent/include/event2/
listener.h 78 @param cb A callback to be invoked when a new connection arrives. If the
91 evconnlistener_cb cb, void *ptr, unsigned flags, int backlog,
98 @param cb A callback to be invoked when a new connection arrives. If the
109 evconnlistener_cb cb, void *ptr, unsigned flags, int backlog,
130 /** Change the callback on the listener to cb and its user_data to arg.
133 evconnlistener_cb cb, void *arg);
  /external/libnl/src/
nl-list-sockets.c 28 "wmem CB refcnt\n");
31 unsigned long sk, cb; local
37 &cb, &refcnt);
43 groups, rmem, wmem, cb, refcnt);
  /hardware/ti/omap4-aah/
tm.c 25 char *cf, *cb; local
48 cb = ptr[5];
49 cb[60] = 'a';
  /hardware/ti/omap4xxx/
tm.c 25 char *cf, *cb; local
48 cb = ptr[5];
49 cb[60] = 'a';
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
scache.h 95 pa_operation* pa_context_remove_sample(pa_context *c, const char *name, pa_context_success_cb_t cb, void *userdata);
105 pa_context_success_cb_t cb /**< Call this function after successfully starting playback, or NULL */,
118 pa_context_play_sample_cb_t cb /**< Call this function after successfully starting playback, or NULL */,
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.15-4.8/sysroot/usr/include/pulse/
scache.h 98 pa_operation* pa_context_remove_sample(pa_context *c, const char *name, pa_context_success_cb_t cb, void *userdata);
108 pa_context_success_cb_t cb /**< Call this function after successfully starting playback, or NULL */,
121 pa_context_play_sample_cb_t cb /**< Call this function after successfully starting playback, or NULL */,
mainloop-api.h 87 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);
93 void (*io_set_destroy)(pa_io_event *e, pa_io_event_destroy_cb_t cb);
96 pa_time_event* (*time_new)(pa_mainloop_api*a, const struct timeval *tv, pa_time_event_cb_t cb, void *userdata);
102 void (*time_set_destroy)(pa_time_event *e, pa_time_event_destroy_cb_t cb);
105 pa_defer_event* (*defer_new)(pa_mainloop_api*a, pa_defer_event_cb_t cb, void *userdata);
111 void (*defer_set_destroy)(pa_defer_event *e, pa_defer_event_destroy_cb_t cb);
  /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/curl/src/
tool_cb_hdr.c 48 const size_t cb = size * nmemb; local
49 const char *end = (char*)ptr + cb;
76 if(rc != cb)
88 (cb > 20) && checkprefix("Content-disposition:", str)) {
110 /* this expression below typecasts 'cb' only to avoid
113 len = (ssize_t)cb - (p - str);
130 return cb;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
CellularTile.java 104 CallbackInfo cb = (CallbackInfo) arg; local
105 if (cb == null) {
106 cb = mSignalCallback.mInfo;
110 final int iconId = cb.noSim ? R.drawable.ic_qs_no_sim
111 : !cb.enabled || cb.airplaneModeEnabled ? R.drawable.ic_qs_signal_disabled
112 : cb.mobileSignalIconId > 0 ? cb.mobileSignalIconId
115 state.isOverlayIconWide = cb.isDataTypeIconWide;
116 state.autoMirrorDrawable = !cb.noSim
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-spu/
icache1.d 71 bd4: 31 00 01 cb brasl \$75,c .*
75 be4: 31 00 01 cb brasl \$75,c .*
79 bf4: 31 00 01 cb brasl \$75,c .*
121 7f4: 31 00 01 cb brasl \$75,c .*
134 bd4: 31 00 01 cb brasl \$75,c .*
138 be4: 31 00 01 cb brasl \$75,c .*
142 bf4: 31 00 01 cb brasl \$75,c .*
162 fd4: 31 00 01 cb brasl \$75,c .*
166 fe4: 31 00 01 cb brasl \$75,c .*
170 ff4: 31 00 01 cb brasl \$75,c .
    [all...]
  /development/ndk/platforms/android-9/include/android/
storage_manager.h 104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);

Completed in 1786 milliseconds

1 2 3 4 56 7 8 91011>>