HomeSort by relevance Sort by last modified time
    Searched defs:cb (Results 276 - 300 of 1070) sorted by null

<<11121314151617181920>>

  /hardware/qcom/wlan/cld80211-lib/
cld80211_lib.c 165 int cld80211_recv_msg(struct nl_sock *sock, struct nl_cb *cb)
167 if (!sock || !cb) {
168 ALOGE("%s: %s is NULL", getprogname(), sock?"cb":"sock");
172 int res = nl_recvmsgs(sock, cb);
181 struct nl_cb *cb)
185 cld80211_recv_msg(sock, cb);
189 cld80211_recv_msg(sock, cb);
360 struct nl_cb *cb = nl_cb_alloc(NL_CB_DEFAULT); local
361 if (!cb)
370 nl_cb_set(cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM, no_seq_check, NULL)
400 struct nl_cb *cb; local
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
nan_req.cpp 1437 struct nl_cb * cb; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
ASCIICharsetEncoderTest.java 108 CharBuffer cb = CharBuffer.wrap(chars); local
109 ByteBuffer bb = encoder.encode(cb);
113 CharBuffer cb = CharBuffer.wrap("\u0080"); local
115 encoder.encode(cb);
120 cb = CharBuffer.wrap("\ud800");
122 encoder.encode(cb);
128 cb = CharBuffer.wrap("A");
130 encoder.encode(cb, bb, false);
132 encoder.encode(cb);
CharsetDecoder2Test.java 259 CharBuffer cb = decoder.decode(ByteBuffer.wrap(bytes)); local
260 fail("No exception thrown on " + Arrays.toString(bytes) + " '" + cb + "'");
272 CharBuffer cb = decoder.decode(bb); local
273 fail("No exception thrown on " + Arrays.toString(bytes) + " '" + cb + "'");
  /libcore/ojluni/src/main/java/java/io/
BufferedReader.java 75 private char cb[]; field in class:BufferedReader
106 cb = new char[sz];
143 if (readAheadLimit <= cb.length) {
145 System.arraycopy(cb, markedChar, cb, 0, delta);
156 int nlength = cb.length * 2;
161 System.arraycopy(cb, markedChar, ncb, 0, delta);
162 cb = ncb;
172 n = in.read(cb, dst, cb.length - dst)
    [all...]
Console.java 407 private char[] cb; field in class:Console.LineReader
412 cb = new char[1024];
438 n = in.read(cb, 0, cb.length);
443 if (n < cb.length &&
444 cb[n-1] != '\n' && cb[n-1] != '\r') {
458 if (leftoverLF && cbuf == rcb && cb[nextChar] == '\n') {
467 c = cbuf[off++] = cb[nextChar];
468 cb[nextChar++] = 0
    [all...]
  /libcore/ojluni/src/main/java/java/nio/
ByteBufferAsCharBuffer.java 167 CharBuffer cb = CharBuffer.wrap(ca); local
171 cb.put(db);
  /packages/apps/Contacts/src/com/android/contacts/util/
MaterialColorMapUtils.java 165 final float cb = (V - b) / vtemp; local
168 H = cb - cg;
170 H = 2 + cr - cb;
  /packages/experimental/KBars/app/src/main/java/js/kbars/
FitSystemWindowsActivity.java 101 FlagCheckBox cb = (FlagCheckBox) v; local
102 if (cb.isChecked()) {
103 vis |= cb.mFlag.value;
  /packages/services/Car/car-lib/src/android/car/cluster/
CarInstrumentClusterManager.java 215 for (CarInstrumentClusterManager.Callback cb : callbacks) {
216 cb.onClusterActivityStateChanged(category, state);
  /packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
MockedVehicleHal.java 143 public synchronized void getPropConfigs(ArrayList<Integer> props, getPropConfigsCallback cb) {
148 cb.onValues(StatusCode.INVALID_ARG, new ArrayList<>());
153 cb.onValues(StatusCode.OK, res);
157 public synchronized void get(VehiclePropValue requestedPropValue, getCallback cb) {
160 cb.onValues(StatusCode.INVALID_ARG, null);
162 cb.onValues(StatusCode.OK, handler.onPropertyGet(requestedPropValue));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
delayimp.h 49 DWORD cb; member in struct:DelayLoadInfo
mfreadwrite.h 59 DWORD cb; member in struct:_MF_SINK_WRITER_STATISTICS
    [all...]
processthreadsapi.h 32 DWORD cb; member in struct:_STARTUPINFOA
53 DWORD cb; member in struct:_STARTUPINFOW
  /system/bt/btif/src/
btif_hf_client.cc 95 btif_hf_client_cb_t cb[HF_CLIENT_MAX_DEVICES]; member in struct:__anon1769
103 bool is_connected(const btif_hf_client_cb_t* cb);
134 #define CHECK_BTHF_CLIENT_SLC_CONNECTED(cb) \
139 } else if ((cb)->state != BTHF_CLIENT_CONNECTION_STATE_SLC_CONNECTED) { \
141 __func__, dump_hf_client_conn_state((cb)->state)); \
168 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
169 if (cb == NULL || !is_connected(cb)) {
176 HAL_CBACK(bt_hf_client_callbacks, audio_state_cb, &cb->peer_bda,
188 bool is_connected(const btif_hf_client_cb_t* cb) {
255 btif_hf_client_cb_t* cb = &btif_hf_client_cb_arr.cb[i]; local
301 btif_hf_client_cb_t* cb = btif_hf_client_allocate_cb(); local
340 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
359 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
389 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
408 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
430 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
453 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
483 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
506 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
527 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
615 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
638 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
657 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
676 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
695 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
737 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(*bd_addr); local
774 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(ind->bd_addr); local
829 btif_hf_client_cb_t* cb = btif_hf_client_get_cb_by_bda(p_data->bd_addr); local
    [all...]
  /system/bt/stack/btm/
btm_pm.cc 357 tBTM_PM_STATUS_CBACK* cb = NULL; local
362 cb = btm_cb.pm_reg_db[btm_cb.pm_pend_id].cback;
370 if (cb != NULL && btm_cb.pm_pend_link < MAX_L2CAP_LINKS)
371 (*cb)(btm_cb.acl_db[btm_cb.pm_pend_link].remote_addr, BTM_PM_STS_ERROR,
  /system/bt/stack/gap/
gap_ble.cc 80 for (auto& cb : gap_clcbs)
81 if (cb.bda == bda) return &cb;
88 for (auto& cb : gap_clcbs)
89 if (cb.connected && cb.conn_id == conn_id) return &cb;
97 tGAP_CLCB& cb = gap_clcbs.back(); local
98 cb.bda = bda;
99 return &cb;
    [all...]
  /system/core/init/
selinux.cpp 453 selinux_callback cb; local
454 cb.func_log = selinux_klog_callback;
455 selinux_set_callback(SELINUX_CB_LOG, cb);
  /system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
HidlTestJava.java 145 public void heyItsMe(IBazCallback cb) throws RemoteException {
148 cb.heyItsMe(null);
553 BazCallback cb = new BazCallback(); local
554 ExpectTrue(!cb.wasCalled());
555 proxy.callMe(cb);
556 ExpectTrue(cb.wasCalled());
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
ia64-opc.c 570 unsigned int cb = ia64_dis_names[disent].completer_index;
578 while (cb)
580 if (cb & 1)
591 if (cb != 1)
604 cb = cb >> 1;
560 unsigned int cb = ia64_dis_names[disent].completer_index; local
  /frameworks/base/services/core/java/com/android/server/audio/
MediaFocusControl.java 265 private void removeFocusStackEntryOnDeath(IBinder cb) {
268 mFocusStack.peek().hasSameBinder(cb);
274 if(fr.hasSameBinder(cb)) {
275 Log.i(TAG, "AudioFocus removeFocusStackEntryOnDeath(): removing entry for " + cb);
294 private void removeFocusEntryForExtPolicy(IBinder cb) {
304 if (fr.hasSameBinder(cb)) {
372 AudioFocusDeathHandler(IBinder cb) {
373 mCb = cb;
529 IAudioFocusDispatcher fd, IBinder cb) {
544 final AudioFocusDeathHandler hdlr = new AudioFocusDeathHandler(cb);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SystemUIModes.java 103 ActionMode.Callback cb = new MyActionModeCallback(); local
104 mActionMode = startActionMode(cb);
  /external/fio/
parse.h 34 void *cb; /* sub-option callback */ member in struct:value_pair
62 void *cb; /* callback */ member in struct:fio_option
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
Engine.java 44 private final ResourceCallback cb; field in class:Engine.LoadStatus
46 public LoadStatus(ResourceCallback cb, EngineJob engineJob) {
47 this.cb = cb;
52 engineJob.removeCallback(cb);
108 * <li>Check the current set of in progress loads and add the cb to the in progress load if present</li>
134 * @param cb The callback that will be called when the load completes.
142 Priority priority, boolean isMemoryCacheable, DiskCacheStrategy diskCacheStrategy, ResourceCallback cb) {
155 cb.onResourceReady(cached);
167 cb.onResourceReady(active)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cintltst.c 510 UConverterFromUCallback cb; local
529 ucnv_setFromUCallBack(conv, UCNV_FROM_U_CALLBACK_ESCAPE, UCNV_ESCAPE_C, &cb, &p, &errorCode);

Completed in 818 milliseconds

<<11121314151617181920>>