/system/bt/stack/avdt/ |
avdt_ad.cc | 45 if (tc.tcid >= AVDT_NUM_RT_TBL) { 46 AVDT_TRACE_ERROR("%s: AvdtpScb entry not found: invalid tcid:%d", __func__, 47 tc.tcid); 50 const AvdtpRoutingEntry& re = rt_tbl[tc.ccb_idx][tc.tcid]; 51 AVDT_TRACE_DEBUG("%s: ccb_idx:%d tcid:%d scb_hdl:%d", __func__, tc.ccb_idx, 52 tc.tcid, re.scb_hdl); 60 * Description Derives the TCID from the channel type and SCB. 63 * Returns TCID value. 75 // the type index (TCID) from the SEP index and the type itself. 76 uint8_t tcid = (scb_idx * (AVDT_CHAN_NUM_TYPES - 1)) + type local 219 uint8_t tcid; local 488 uint8_t tcid; local 586 uint8_t tcid; local [all...] |
avdt_l2c.cc | 97 avdtp_cb.ad.rt_tbl[avdt_ccb_to_idx(p_ccb)][p_tbl->tcid].lcid = p_tbl->lcid; 192 p_tbl->tcid = AVDT_CHAN_SIG; 255 avdtp_cb.ad.rt_tbl[avdt_ccb_to_idx(p_ccb)][p_tbl->tcid].lcid = lcid; 294 if (p_tbl->tcid != AVDT_CHAN_SIG) {
|
avdt_api.cc | 1046 uint8_t tcid; local 1074 uint8_t tcid = 0; \/* tcid is always 0 for signal channel *\/ local [all...] |
avdt_int.h | 397 uint8_t tcid; /* TCID */ member in struct:__anon2138 653 tcid(0), 664 tcid = 0; 675 uint8_t tcid; // Transport channel ID member in class:AvdtpTransportChannel [all...] |
avdt_scb_act.cc | 1426 uint8_t tcid; local [all...] |
/external/ltp/testcases/kernel/syscalls/symlink/ |
symlink01.c | 329 char *tcid; member in struct:all_test_cases 449 char *tcid; member in struct:tcses 499 char *TCID; 500 char *Selectedtests = NULL; /* Name (tcid) of selected test cases */ 508 char *Tcid = NULL; 511 {"T:", NULL, &Tcid}, /* -T tcid option */ 526 * If the -T option was used, use that TCID or use the default 528 if (Tcid != NULL) { 529 TCID = Tcid [all...] |
/system/bt/stack/mcap/ |
mca_main.cc | 131 p_tbl->tcid = MCA_CTRL_TCID; 169 p_tbl->tcid = p_dcb->p_cs->type + 1; 175 MCA_TRACE_DEBUG("%s() - tcid: %d, cb_idx: %d", __func__, p_tbl->tcid, 239 if (p_tbl->tcid == MCA_CTRL_TCID) { 276 MCA_TRACE_DEBUG("%s() - tcid: %d, cb_idx:%d, old: %d", __func__, p_tbl->tcid, 294 if (p_tbl->tcid == MCA_CTRL_TCID) { 327 MCA_TRACE_DEBUG("mca_tc_open_ind tcid: %d, cb_idx: %d", p_tbl->tcid, [all...] |
mca_l2c.cc | 293 MCA_TRACE_DEBUG("p_tbl state: %d, tcid: %d", p_tbl->state, p_tbl->tcid); 298 if (p_tbl->tcid != 0) { 317 BTM_SEC_PROTO_MCA, p_tbl->tcid,
|
mca_int.h | 171 #define MCA_CTRL_TCID 0 /* to identify control channel by tMCA_TC_TBL.tcid */ 178 uint8_t tcid; /* transport channel id (0, for control channel. (MDEP ID + 1) member in struct:__anon2497
|
/external/ltp/pan/cgi/ |
reconsile.cgi | 79 ($tag, $tcid, $tc, $status, $contact) = split(/\s+/, $line); 81 $tcid = '{' if ($tcid eq '*'); 82 $tcid = '}' if ($tcid eq '-'); 87 $rec->{TCID} = $tcid; 104 || $a->{TCID} cmp $b->{TCID} 111 # print "$_->{TAG}:$_->{TCID}:$_->{TC}:$_->{STATUS}\n" [all...] |
/external/ltp/pan/ |
tag_report.c | 55 int test_result(char *tag, char *tcid, char *tc, char *result, SYM tags) 62 if (tcid == NULL) 63 tcid = "-"; 89 printf(FORMAT, tag, tcid, tc, result, *cont); 155 printf("cuts_report: tcid %s\n", (char *)Key.data); 316 * - tcid+tc = "!" 405 fprintf(out, FORMAT, "tag", "tcid", "testcase", "status", "contact"); 436 printf("cuts_testcase: TCID=%s TC=%s Result=%s\n", cuts_info[0],
|
/external/ltp/lib/ |
tst_res.c | 98 static void tst_print(const char *tcid, int tnum, int ttype, const char *tmesg); 122 extern char *TCID; /* Test case identifier from the test source */ 187 tst_print(TCID, 0, ttype, tmesg); 190 tst_print(TCID, 0, TWARN, 203 tst_print(TCID, tst_count + 1, ttype, tmesg); 221 if (strcmp(Last_tcid, TCID) == 0 && Last_type == ttype_result && 239 Last_tcid = malloc(strlen(TCID) + 1); 240 strcpy(Last_tcid, TCID); 267 static void tst_print(const char *tcid, int tnum, int ttype, const char *tmesg) 302 "%-8s %4d ", tcid, tnum) [all...] |