HomeSort by relevance Sort by last modified time
    Searched refs:scb (Results 1 - 22 of 22) sorted by null

  /system/bt/bta/ag/
bta_ag_api.cc 57 for (const tBTA_AG_SCB& scb : bta_ag_cb.scb) {
58 if (scb.in_use) {
bta_ag_main.cc 318 * Returns pointer to the scb, or NULL if none could be allocated.
322 tBTA_AG_SCB* p_scb = &bta_ag_cb.scb[0];
386 if (bta_ag_cb.scb[idx].in_use) {
402 * Description Given a pointer to an scb, return its index.
405 * Returns Index of scb starting from 1
410 return static_cast<uint16_t>(p_scb - bta_ag_cb.scb + 1);
417 * Description Given an scb index return pointer to scb.
420 * Returns Pointer to scb or NULL if not allocated.
428 p_scb = &bta_ag_cb.scb[idx - 1]
    [all...]
bta_ag_sco.cc 123 /* match callback to scb; first check current sco scb */
127 /* then check for scb connected to this peer */
166 "bta_ag_sco_disc_cback(): scb[0] addr: 0x%08x in_use: %u sco_idx: 0x%x "
168 &bta_ag_cb.scb[0], bta_ag_cb.scb[0].in_use, bta_ag_cb.scb[0].sco_idx,
169 bta_ag_cb.scb[0].state);
171 "bta_ag_sco_disc_cback(): scb[1] addr: 0x%08x in_use: %u sco_idx: 0x%x "
173 &bta_ag_cb.scb[1], bta_ag_cb.scb[1].in_use, bta_ag_cb.scb[1].sco_idx
    [all...]
bta_ag_act.cc 187 /* Issue collision for this scb for now. */
427 if (bta_ag_cb.scb[i].in_use && bta_ag_cb.scb[i].svc_conn)
436 /* else close port and deallocate scb */
535 for (tBTA_AG_SCB& ag_scb : bta_ag_cb.scb) {
bta_ag_int.h 210 bool in_use; /* scb in use */
256 tBTA_AG_SCB* p_curr_scb; /* SCB associated with SCO connection */
257 tBTA_AG_SCB* p_xfer_scb; /* SCB associated with SCO transfer */
265 tBTA_AG_SCB scb[BTA_AG_MAX_NUM_CLIENTS]; /* service control blocks */ member in struct:__anon1228
bta_ag_sdp.cc 100 * distinguish scb from the callback we need separate
101 * callbacks for each scb.
245 tBTA_AG_SCB* p = &bta_ag_cb.scb[0];
265 /* if service registered for this scb and not registered for any other scb
bta_ag_cmd.cc 962 for (i = 0, ag_scb = &bta_ag_cb.scb[0]; i < BTA_AG_MAX_NUM_CLIENTS;
    [all...]
  /system/bt/stack/avdt/
avdt_api.cc 149 AVDT_TRACE_ERROR("%s Improper SCB, can not abort the stream", __func__);
179 /* Allocate scb; if no scbs, return failure */
215 /* look up scb */
220 /* send remove event to scb */
410 /* map handle to scb */
415 /* send event to scb */
455 /* map handle to scb */
474 /* send event to scb */
513 /* map handle to scb */
524 /* send event to scb */
1237 const AvdtpScb& scb = ccb.scb[i]; local
    [all...]
avdt_ccb_act.cc 112 AvdtpScb* p_scb = &(p_ccb->scb[0]);
146 AvdtpScb* p_scb = &(p_ccb->scb[0]);
210 /* look up scb for seid sent to us */
278 * reject event to each SCB associated with the command.
346 * suspend reject event to each SCB associated with the
528 * to the SCB for each stream.
541 /* send start event to each scb */
603 * to the SCB for each stream.
616 /* send start event to each scb */
641 AvdtpScb* p_scb = &(p_ccb->scb[0])
    [all...]
avdt_scb.cc     [all...]
avdt_int.h 68 /* to distinguish CCB events from SCB events */
75 * | BT_HDR | SCB handles | L2CAP + HCI header | AVDTP header | data ... |
77 * Note that we "hide" the scb handles at the top of the message buffer.
81 /* scb transport channel connect timeout value (in milliseconds) */
84 /* scb transport channel disconnect timeout value (in milliseconds) */
175 /* scb state machine states; these state values are private to this module so
176 * the scb state cannot be read or set by actions functions
253 /* scb state machine events */
401 /* type for scb event data */
460 * @param scb_handle the AVDTP SCB handle to us
607 AvdtpScb scb[AVDT_NUM_SEPS]; \/\/ The AVDTP stream control blocks member in class:AvdtpCcb
    [all...]
  /system/bt/bta/pan/
bta_pan_main.cc 135 * Returns pointer to the scb, or NULL if none could be allocated.
139 tBTA_PAN_SCB* p_scb = &bta_pan_cb.scb[0];
174 APPL_TRACE_EVENT("PAN scb=%d event=0x%x state=%d", bta_pan_scb_to_idx(p_scb),
241 /* allocate an scb */
271 * Description Given a pointer to an scb, return its index.
274 * Returns Index of scb.
278 return ((uint8_t)(p_scb - bta_pan_cb.scb)) + 1;
285 * Description Find scb associated with handle.
288 * Returns Pointer to scb or NULL if not found.
292 tBTA_PAN_SCB* p_scb = &bta_pan_cb.scb[0]
    [all...]
bta_pan_int.h 122 bool in_use; /* scb in use */
135 tBTA_PAN_SCB scb[BTA_PAN_NUM_CONN]; /* state machine control blocks */ member in struct:__anon1664
bta_pan_act.cc 99 /* allocate an scb */
264 p_scb = &bta_pan_cb.scb[index];
280 p_scb = &bta_pan_cb.scb[index];
405 tBTA_PAN_SCB* p_scb = &bta_pan_cb.scb[0];
  /system/bt/bta/hl/
bta_hl_act.cc     [all...]
bta_hl_int.h 525 tBTA_HL_SDP_CB scb[BTA_HL_NUM_SDP_CBACKS]; member in struct:__anon1411
    [all...]
  /frameworks/base/libs/hwui/
ClipArea.cpp 379 inline static const RectangleList& getRectList(const ClipBase* scb) {
380 return reinterpret_cast<const ClipRectList*>(scb)->rectList;
383 inline static const SkRegion& getRegion(const ClipBase* scb) {
384 return reinterpret_cast<const ClipRegion*>(scb)->region;
389 static bool cannotFitInRectangleList(const ClipArea& clipArea, const ClipBase* scb) {
393 int recordedRectCount = (scb->mode == ClipMode::RectangleList)
394 ? getRectList(scb).getTransformedRectanglesCount()
  /external/syslinux/core/lwip/src/api/
sockets.c 1238 struct lwip_select_cb *scb; local
    [all...]
  /external/iproute2/ip/
ipmacsec.c 608 print_flag(stdout, attrs, "scb", MACSEC_SECY_ATTR_SCB);
1098 print_flag(f, tb, "scb", IFLA_MACSEC_SCB);
1108 static bool check_txsc_flags(bool es, bool scb, bool sci)
1110 if (sci && (es || scb))
1112 if (es && scb)
1126 " [ scb { on | off } ]\n"
1142 bool es = false, scb = false, send_sci = false; local
1208 } else if (strcmp(*argv, "scb") == 0) {
1212 ret = one_of("scb", *argv, values_on_off,
1216 scb = i
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationViewAdapter.java 503 final SuperCollapsedBlock scb = (SuperCollapsedBlock) v; local
504 scb.bind(this);
  /hardware/google/av/media/sfplugin/
CCodecBufferChannel.cpp 230 void transferSkipCutBuffer(const sp<SkipCutBuffer> &scb) {
231 mSkipCutBuffer = scb;
    [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-core/1.11.18/
aws-java-sdk-core-1.11.18.jar 

Completed in 1626 milliseconds