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

  /system/bt/stack/avct/
avct_ccb.c 36 ** Description Allocate a connection control block; copy parameters to ccb.
39 ** Returns pointer to the ccb, or NULL if none could be allocated.
44 tAVCT_CCB *p_ccb = &avct_cb.ccb[0];
106 ** Description Given a pointer to an ccb, return its index.
109 ** Returns Index of ccb.
115 return (UINT8) (p_ccb - avct_cb.ccb);
122 ** Description Return ccb pointer based on ccb index (or handle).
125 ** Returns pointer to the ccb, or NULL if none found.
135 p_ccb = &avct_cb.ccb[idx]
    [all...]
avct_lcb.c 359 tAVCT_CCB *p_ccb = &avct_cb.ccb[0];
417 ** Returns Pointer to CCB if PID found, NULL otherwise.
422 tAVCT_CCB *p_ccb = &avct_cb.ccb[0];
439 ** Description See if given ccb is only one on the lcb.
442 ** Returns TRUE if ccb is last, FALSE otherwise.
447 tAVCT_CCB *p_ccb = &avct_cb.ccb[0];
453 AVCT_TRACE_WARNING("%x: aloc:%d, lcb:0x%x/0x%x, ccb:0x%x/0x%x",
avct_lcb_act.c 201 ** Description Deallocate ccb and call callback with disconnect event.
218 ** Description Handle an LL_OPEN event. For each allocated ccb already
220 ** unbound ccb with a new PID, bind that ccb to this lcb and
229 tAVCT_CCB *p_ccb = &avct_cb.ccb[0];
235 /* if ccb allocated and */
246 /* if unbound acceptor and lcb doesn't already have a ccb for this PID */
250 /* bind ccb to lcb and send connect ind event */
280 tAVCT_CCB *p_ccb = &avct_cb.ccb[0];
306 tAVCT_CCB *p_ccb = &avct_cb.ccb[0]
    [all...]
avct_int.h 56 /* "no event" indicator used by ccb dealloc */
99 UINT8 ch_close; /* CCB index+1, if CCB initiated channel close */
109 BOOLEAN ch_close; /* Whether CCB initiated channel close */
135 tAVCT_CCB ccb[AVCT_NUM_CONN]; /* connection control blocks */ member in struct:__anon72417
205 /* CCB function declarations */
avct_l2c.c 67 ** Description check is the CCB associated with the given LCB was created
76 tAVCT_CCB *p_ccb = &avct_cb.ccb[0];
117 /* no ccb available, reject L2CAP connection */
  /external/regex-re2/re2/testing/
charclass_test.cc 198 CharClassBuilder ccb; local
201 ccb.AddRange(t->add[j].lo, t->add[j].hi);
203 ccb.RemoveAbove(t->remove);
204 if (!CorrectCC(&ccb, t, "before copy (CharClassBuilder)"))
206 CharClass* cc = ccb.GetCharClass();
211 CharClassBuilder *ccb1 = ccb.Copy();
214 cc = ccb.GetCharClass();
  /system/bt/stack/mcap/
mca_csm.c 176 ** Description This function is the CCB state machine main function.
189 MCA_TRACE_EVENT("CCB ccb=%d event=%s state=%s", mca_ccb_to_hdl(p_ccb), mca_ccb_evt_str[event], mca_ccb_st_str[p_ccb->state]);
191 MCA_TRACE_EVENT("CCB ccb=%d event=%d state=%d", mca_ccb_to_hdl(p_ccb), event, p_ccb->state);
211 ** Description This function looks up the CCB based on the BD address.
212 ** It returns a pointer to the CCB.
213 ** If no CCB is found it returns NULL.
228 p_ccb_tmp = &mca_cb.ccb[i*MCA_NUM_LINKS];
245 ** Description This function allocates a CCB and copies the BD address t
    [all...]
mca_int.h 172 tMCA_DL cb_idx; /* 1-based index to ccb or dcb */
193 MCA_CCB_STAT_NORM, /* normal operation (based on ccb state) */
202 * ccb[0] ...ccb[MCA_NUM_LINKS*1-1] -> rcb[0]
203 * ccb[MCA_NUM_LINKS*1]...ccb[MCA_NUM_LINKS*2-1] -> rcb[1]
204 * ccb[MCA_NUM_LINKS*2]...ccb[MCA_NUM_LINKS*3-1] -> rcb[2]
208 alarm_t *mca_ccb_timer; /* MCA CCB timer entry */
216 UINT8 state; /* The CCB state machine state *
258 tMCA_CCB ccb[MCA_NUM_CCBS]; \/* control channel control blocks *\/ member in struct:__anon72840
    [all...]
mca_main.c 291 ** L2CAP channel is closed. It looks up the CCB or DCB for
322 /* if control channel, notify ccb that channel close */
346 ** the L2CAP channel is opened. It looks up the CCB or DCB
371 /* if control channel, notify ccb that channel open */
398 ** L2CAP calls the congestion callback. It looks up the CCB
414 /* if control channel, notify ccb of congestion */
438 ** incoming data is received from L2CAP. It looks up the CCB
491 } /* got a valid ccb */
557 p_ccb = &mca_cb.ccb[handle*MCA_NUM_LINKS];
558 /* check if all associated CCB are disconnected *
    [all...]
  /system/bt/stack/avdt/
avdt_ccb.c 284 memset(&avdt_cb.ccb[0], 0, sizeof(tAVDT_CCB) * AVDT_NUM_LINKS);
292 ** Description State machine event handling function for ccb
305 AVDT_TRACE_EVENT("CCB ccb=%d event=%s state=%s", avdt_ccb_to_idx(p_ccb), avdt_ccb_evt_str[event], avdt_ccb_st_str[p_ccb->state]);
335 ** Description This lookup function finds the ccb for a BD address.
338 ** Returns pointer to the ccb, or NULL if none found.
343 tAVDT_CCB *p_ccb = &avdt_cb.ccb[0];
348 /* if allocated ccb has matching ccb */
357 /* if no ccb found *
    [all...]
avdt_int.h 90 /* to distinguish CCB events from SCB events */
118 /* ccb state machine states */
169 /* ccb state machine events */
413 /* union associated with ccb state machine events */
431 alarm_t *idle_ccb_timer; /* Idle CCB timer entry */
432 alarm_t *ret_ccb_timer; /* Ret CCB timer entry */
433 alarm_t *rsp_ccb_timer; /* Rsp CCB timer entry */
442 BOOLEAN allocated; /* Whether ccb is allocated */
443 UINT8 state; /* The CCB state machine state */
493 tAVDT_CCB *p_ccb; /* ccb associated with this scb *
547 tAVDT_CCB ccb[AVDT_NUM_LINKS]; \/* channel control blocks *\/ member in struct:__anon72441
    [all...]
  /system/bt/stack/avrc/
avrc_int.h 119 tAVRC_CONN_CB ccb[AVCT_NUM_CONN]; member in struct:__anon72444
avrc_api.c 80 if (event <= AVRC_MAX_RCV_CTRL_EVT && avrc_cb.ccb[handle].p_ctrl_cback)
88 (*avrc_cb.ccb[handle].p_ctrl_cback)(handle, avrc_event, result, peer_addr);
575 if ( ((avrc_cb.ccb[handle].control & AVRC_CT_TARGET) && (cr == AVCT_CMD)) ||
576 ((avrc_cb.ccb[handle].control & AVRC_CT_CONTROL) && (cr == AVCT_RSP)) )
595 AVRC_CO_ID_TO_BE_STREAM(p_rsp_data, avrc_cb.ccb[handle].company_id);
738 if ((avrc_cb.ccb[handle].control & AVRC_CT_TARGET) && (cr == AVCT_CMD))
775 (*avrc_cb.ccb[handle].p_msg_cback)(handle, label, opcode, &msg);
782 handle, avrc_cb.ccb[handle].control, cr, opcode);
    [all...]
  /system/bt/stack/sdp/
sdp_utils.c 50 ** Description This function searches the CCB table for an entry with the
53 ** Returns the CCB address, or NULL if not found.
62 for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++)
77 ** Description This function searches the CCB table for an entry with the
80 ** Returns the CCB address, or NULL if not found.
92 for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++)
108 ** Description This function allocates a new CCB.
110 ** Returns CCB address, or NULL if none available.
119 for (xx = 0, p_ccb = sdp_cb.ccb; xx < SDP_MAX_CONNECTIONS; xx++, p_ccb++)
129 /* If here, no free CCB found *
    [all...]
sdpint.h 222 tCONN_CB ccb[SDP_MAX_CONNECTIONS]; member in struct:__anon72869
  /external/regex-re2/re2/
parse.cc 198 CharClassBuilder* ccb = re->ccb_; local
200 re->cc_ = ccb->GetCharClass();
201 delete ccb;
952 CharClassBuilder ccb; local
958 ccb.AddRange(it->lo, it->hi);
960 ccb.AddRangeFlags(re->rune(), re->rune(), re->parse_flags());
967 sub[out++] = NewCharClass(ccb.GetCharClass(), altflags);
    [all...]
  /system/bt/bta/av/
bta_av_act.c 305 tAVRC_CONN_CB ccb; local
327 ccb.p_ctrl_cback = bta_av_rc_ctrl_cback;
328 ccb.p_msg_cback = bta_av_rc_msg_cback;
329 ccb.company_id = p_bta_av_cfg->company_id;
330 ccb.conn = role;
332 ccb.control = p_cb->features & (BTA_AV_FEAT_RCTG | BTA_AV_FEAT_RCCT | AVRC_CT_PASSIVE);
334 if (AVRC_Open(&rc_handle, &ccb, bda) != AVRC_SUCCESS)
    [all...]
  /external/elfutils/tests/
run-strings-test.sh 125 testfile4: ccb pthread_create
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
all-opcodes.d 680 29e: 3ccb.*
682 2a0: 3ccb.*
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mn10300/
am33-2.d     [all...]

Completed in 276 milliseconds