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

<<11121314151617181920>>

  /external/iptables/extensions/
libxt_SECMARK.c 32 static void SECMARK_parse(struct xt_option_call *cb)
34 struct xt_secmark_target_info *info = cb->data;
36 xtables_option_parse(cb);
libxt_multiport.c 162 static void __multiport_parse(struct xt_option_call *cb, uint16_t pnum,
166 struct xt_multiport *multiinfo = cb->data;
168 xtables_option_parse(cb);
169 switch (cb->entry->id) {
172 multiinfo->count = parse_multi_ports(cb->arg,
178 multiinfo->count = parse_multi_ports(cb->arg,
184 multiinfo->count = parse_multi_ports(cb->arg,
189 if (cb->invert)
194 static void multiport_parse(struct xt_option_call *cb)
196 const struct ipt_entry *entry = cb->xt_entry
    [all...]
libipt_ah.c 31 static void ah_parse(struct xt_option_call *cb)
33 struct ipt_ah *ahinfo = cb->data;
35 xtables_option_parse(cb);
36 if (cb->nvals == 1)
38 if (cb->invert)
libxt_CLASSIFY.c 39 static void CLASSIFY_parse(struct xt_option_call *cb)
41 struct xt_classify_target_info *clinfo = cb->data;
43 xtables_option_parse(cb);
44 if (CLASSIFY_string_to_priority(cb->arg, &clinfo->priority))
46 "Bad class value \"%s\"", cb->arg);
libxt_esp.c 31 static void esp_parse(struct xt_option_call *cb)
33 struct xt_esp *espinfo = cb->data;
35 xtables_option_parse(cb);
36 if (cb->nvals == 1)
38 if (cb->invert)
libxt_quota2.c 60 static void quota_mt2_parse(struct xt_option_call *cb)
62 struct xt_quota_mtinfo2 *info = cb->data;
64 xtables_option_parse(cb);
65 switch (cb->entry->id) {
78 if (cb->invert)
  /external/iw/
ps.c 12 struct nl_cb *cb,
73 struct nl_cb *cb,
78 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM,
  /external/libevent/include/event2/
listener.h 106 @param cb A callback to be invoked when a new connection arrives. If the
120 evconnlistener_cb cb, void *ptr, unsigned flags, int backlog,
127 @param cb A callback to be invoked when a new connection arrives. If the
139 evconnlistener_cb cb, void *ptr, unsigned flags, int backlog,
165 /** Change the callback on the listener to cb and its user_data to arg.
169 evconnlistener_cb cb, void *arg);
  /libcore/ojluni/src/main/java/java/io/
Reader.java 120 char cb[] = new char[1]; local
121 if (read(cb, 0, 1) == -1)
124 return cb[0];
  /packages/apps/Bluetooth/src/com/android/bluetooth/newavrcp/
BrowsedPlayerWrapper.java 112 void connect(ConnectionCallback cb) {
113 if (cb == null) {
124 cb.run(status, wrapper);
167 public boolean getFolderItems(String mediaId, BrowseCallback cb) {
170 cb.run(STATUS_SUCCESS, mediaId, Util.cloneList(mCachedFolders.get(mediaId)));
174 if (cb == null) {
187 cb.run(status, "", new ArrayList<ListItem>());
191 getFolderItemsInternal(mediaId, cb);
199 private boolean getFolderItemsInternal(String mediaId, BrowseCallback cb) {
200 mWrappedBrowser.subscribe(mediaId, new BrowserSubscriptionCallback(cb));
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/
Utility.java 69 final CharBuffer cb = charset.decode(ByteBuffer.wrap(b)); local
70 return new String(cb.array(), 0, cb.length());
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wabnot.h 22 ULONG cb; member in struct:__anon65868
27 #define CbNOTIFKEY(_lpkey) (offsetof(NOTIFKEY,ab) + (_lpkey)->cb)
28 #define SizedNOTIFKEY(_cb,_name) struct _NOTIFKEY_ ## _name { ULONG cb; BYTE ab[_cb]; } _name
  /system/bt/test/rootcanal/
bluetooth_hci.cc 69 Return<void> BluetoothHci::initialize(const sp<IBluetoothHciCallbacks>& cb) {
72 if (cb == nullptr) {
73 ALOGE("cb == nullptr! -> Unable to call initializationComplete(ERR)");
78 cb->linkToDeath(death_recipient_, 0);
88 controller_.RegisterEventChannel([cb](std::unique_ptr<EventPacket> event) {
97 cb->hciEventReceived(hci_event);
100 controller_.RegisterAclChannel([cb](std::unique_ptr<AclPacket> packet) {
104 cb->aclDataReceived(acl_packet);
107 controller_.RegisterScoChannel([cb](std::unique_ptr<ScoPacket> packet) {
116 cb->scoDataReceived(sco_packet)
    [all...]
  /system/bt/vendor_libs/linux/interface/
bluetooth_hci.cc 268 const ::android::sp<IBluetoothHciCallbacks>& cb) {
270 if (cb == nullptr) {
271 ALOGE("cb == nullptr! -> Unable to call initializationComplete(ERR)");
276 cb->linkToDeath(death_recipient_, 0);
278 auto hidl_status = cb->initializationComplete(
285 [cb](const hidl_vec<uint8_t>& packet) { cb->hciEventReceived(packet); },
286 [cb](const hidl_vec<uint8_t>& packet) { cb->aclDataReceived(packet); },
287 [cb](const hidl_vec<uint8_t>& packet) { cb->scoDataReceived(packet); })
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/
filename_cmp.c 216 char * cb = lrealpath(b); local
217 int res = filename_eq (ca, cb);
219 free (cb);
  /system/bt/stack/btm/
btm_ble_multi_adv.cc 47 base::Callback<void(uint8_t[8])> cb);
148 IdTxPowerStatusCb cb; member in struct:__anon2159::CreatorParams
177 void GetOwnAddress(uint8_t inst_id, GetAddressCallback cb) override {
178 cb.Run(adv_inst[inst_id].own_address_type, adv_inst[inst_id].own_address);
190 void OnRpaGenerationComplete(base::Callback<void(RawAddress)> cb,
215 cb.Run(bda);
218 void GenerateRpa(base::Callback<void(RawAddress)> cb) {
221 weak_factory_.GetWeakPtr(), std::move(cb)));
273 base::Callback<void(uint8_t /* inst_id */, uint8_t /* status */)> cb)
287 cb,
319 MultiAdvCb cb; member in struct:__anon2159::BleAdvertisingManagerImpl::CreatorParams
631 base::Closure cb = Bind( local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
ButtonManager.java 334 * @param cb The callback to be executed after the button state change.
336 public void initializeButton(int buttonId, ButtonCallback cb) {
337 initializeButton(buttonId, cb, null);
345 * @param cb The callback to be executed after the button state change.
348 public void initializeButton(int buttonId, ButtonCallback cb, ButtonCallback preCb) {
352 initializeFlashButton(button, cb, preCb, R.array.camera_flashmode_icons);
355 initializeTorchButton(button, cb, preCb, R.array.video_flashmode_icons);
358 initializeHdrPlusFlashButton(button, cb, preCb, R.array.camera_flashmode_icons);
361 initializeCameraButton(button, cb, preCb, R.array.camera_id_icons);
364 initializeHdrPlusButton(button, cb, preCb, R.array.pref_camera_hdr_plus_icons)
    [all...]
  /external/boringssl/src/include/openssl/
pem.h 126 OPENSSL_EXPORT type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)\
128 return (type *)PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \
145 unsigned char *kstr, int klen, pem_password_cb *cb, \
148 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
153 unsigned char *kstr, int klen, pem_password_cb *cb, \
156 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
162 OPENSSL_EXPORT type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\
164 return (type *)PEM_ASN1_read_bio((d2i_of_void *)d2i_##asn1, str,bp,(void **)x,cb,u); \
181 unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \
183 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u);
    [all...]
  /system/bt/osi/test/
alarm_test.cc 78 static void cb(UNUSED_ATTR void* data) { function
106 alarm_set(alarm, 10, cb, NULL);
118 alarm_set(alarm, 10, cb, NULL);
128 alarm_set(alarm, 10, cb, NULL);
144 alarm_set(alarm, 10, cb, NULL);
164 alarm_set(alarm, 0, cb, NULL);
182 alarm_set(alarm, TIMER_INTERVAL_FOR_WAKELOCK_IN_MS + EPSILON_MS, cb, NULL);
199 alarm_set(alarm[0], 10, cb, NULL);
200 alarm_set(alarm[1], 20, cb, NULL);
223 alarm_set(alarm[0], 10, cb, NULL)
    [all...]
  /external/adhd/cras/src/server/
cras_tm.c 15 * cb - Callback to call when the timer expires.
20 void (*cb)(struct cras_timer *t, void *data); member in struct:cras_timer
59 void (*cb)(struct cras_timer *t, void *data),
68 t->cb = cb;
142 t->cb(t, t->cb_data);
144 * in t->cb(). */
  /external/cn-cbor/include/cn-cbor/
cn-cbor.h 226 * @param[in] cb The CBOR map
230 cn_cbor* cn_cbor_mapget_string(const cn_cbor* cb, const char* key);
235 * @param[in] cb The CBOR map
239 cn_cbor* cn_cbor_mapget_int(const cn_cbor* cb, int key);
244 * @param[in] cb The CBOR map
248 cn_cbor* cn_cbor_index(const cn_cbor* cb, unsigned int idx);
255 * @param[in] cb The CBOR value to free. May be NULL, or a root object.
258 void cn_cbor_free(cn_cbor* cb CBOR_CONTEXT);
267 * @param[in] cb [description]
273 const cn_cbor *cb);
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
InputFile.java 148 CharBuffer cb = CharBuffer.wrap(chars); local
152 bb = encoder.encode(cb);
164 CharBuffer cb; local
167 cb = decoder.decode(bb);
173 return cb.array();
  /external/skia/src/utils/win/
SkIStream.h 43 virtual HRESULT STDMETHODCALLTYPE Read(void* pv, ULONG cb, ULONG* pcbRead);
46 , ULONG cb
97 virtual HRESULT STDMETHODCALLTYPE Read(void* pv, ULONG cb, ULONG* pcbRead);
100 , ULONG cb
125 , ULONG cb
  /external/skqp/src/utils/win/
SkIStream.h 43 virtual HRESULT STDMETHODCALLTYPE Read(void* pv, ULONG cb, ULONG* pcbRead);
46 , ULONG cb
97 virtual HRESULT STDMETHODCALLTYPE Read(void* pv, ULONG cb, ULONG* pcbRead);
100 , ULONG cb
125 , ULONG cb
  /external/wayland/tests/
protocol-logger-test.c 102 callback_done(void *data, struct wl_callback *cb, uint32_t time)
104 wl_callback_destroy(cb);
119 struct wl_callback *cb; member in struct:__anon43688
133 client.cb = wl_display_sync(client.display);
134 wl_callback_add_listener(client.cb, &callback_listener, NULL);

Completed in 436 milliseconds

<<11121314151617181920>>