Home | History | Annotate | Download | only in tools

Lines Matching full:channel

131 	{ "Channel/Port"	},
1032 printf(" Channel: %d\n", p->val.uint8);
1141 uint8_t channel;
1165 uint8_t u8 = si->channel ? si->channel : 1;
1166 sdp_data_t *channel;
1193 channel = sdp_data_alloc(SDP_UINT8, &u8);
1194 proto[1] = sdp_list_append(proto[1], channel);
1221 sdp_data_free(channel);
1237 uint8_t u8 = si->channel ? si->channel : 2;
1238 sdp_data_t *channel;
1265 channel = sdp_data_alloc(SDP_UINT8, &u8);
1266 proto[1] = sdp_list_append(proto[1], channel);
1283 sdp_data_free(channel);
1299 uint8_t u8 = si->channel? si->channel : 3;
1300 sdp_data_t *channel;
1327 channel = sdp_data_alloc(SDP_UINT8, &u8);
1328 proto[1] = sdp_list_append(proto[1], channel);
1343 sdp_data_free(channel);
1358 uint8_t u8 = si->channel ? si->channel : 4;
1359 sdp_data_t *channel;
1384 channel = sdp_data_alloc(SDP_UINT8, &u8);
1385 proto[1] = sdp_list_append(proto[1], channel);
1402 sdp_data_free(channel);
1418 uint8_t u8 = si->channel ? si->channel : 5;
1419 sdp_data_t *channel;
1446 channel = sdp_data_alloc(SDP_UINT8, &u8);
1447 proto[1] = sdp_list_append(proto[1], channel);
1464 sdp_data_free(channel);
1480 uint8_t u8 = si->channel ? si->channel : 7;
1482 sdp_data_t *channel, *features;
1511 channel = sdp_data_alloc(SDP_UINT8, &u8);
1512 proto[1] = sdp_list_append(proto[1], channel);
1534 sdp_data_free(channel);
1550 uint8_t u8 = si->channel ? si->channel : 6;
1552 sdp_data_t *channel, *features;
1579 channel = sdp_data_alloc(SDP_UINT8, &u8);
1580 proto[1] = sdp_list_append(proto[1], channel);
1600 sdp_data_free(channel);
1616 uint8_t u8 = si->channel ? si->channel : 7;
1621 sdp_data_t *channel, *features;
1650 channel = sdp_data_alloc(SDP_UINT8, &u8);
1651 proto[1] = sdp_list_append(proto[1], channel);
1673 sdp_data_free(channel);
1689 uint8_t u8 = si->channel? si->channel : 8;
1691 sdp_data_t *channel, *features;
1718 channel = sdp_data_alloc(SDP_UINT8, &u8);
1719 proto[1] = sdp_list_append(proto[1], channel);
1739 sdp_data_free(channel);
1755 uint8_t chan = si->channel ? si->channel : 9;
1756 sdp_data_t *channel;
1786 channel = sdp_data_alloc(SDP_UINT8, &chan);
1787 proto[1] = sdp_list_append(proto[1], channel);
1815 sdp_data_free(channel);
1832 uint8_t chan = si->channel ? si->channel : 19;
1833 sdp_data_t *channel;
1863 channel = sdp_data_alloc(SDP_UINT8, &chan);
1864 proto[1] = sdp_list_append(proto[1], channel);
1889 sdp_data_free(channel);
1906 uint8_t u8 = si->channel ? si->channel: 10;
1907 sdp_data_t *channel;
1932 channel = sdp_data_alloc(SDP_UINT8, &u8);
1933 proto[1] = sdp_list_append(proto[1], channel);
1954 sdp_data_free(channel);
1971 uint8_t chan = si->channel ? si->channel : 12;
1972 sdp_data_t *channel;
1997 channel = sdp_data_alloc(SDP_UINT8, &chan);
1998 proto[1] = sdp_list_append(proto[1], channel);
2019 sdp_data_free(channel);
2947 uint8_t channel = si->channel ? si->channel: 18;
2962 sdp_list_append(NULL, &rfcomm_uuid), sdp_data_alloc(SDP_UINT8, &channel)));
2988 uint8_t channel = si->channel ? si->channel: 19;
3003 sdp_list_append(NULL, &rfcomm_uuid), sdp_data_alloc(SDP_UINT8, &channel)));
3067 uint8_t channel = si->channel ? si->channel: 15;
3085 sdp_list_append(NULL, &rfcomm_uuid), sdp_data_alloc(SDP_UINT8, &channel)));
3112 uint8_t channel = si->channel ? si->channel: 21;
3126 sdp_list_append(NULL, &rfcomm_uuid), sdp_data_alloc(SDP_UINT8, &channel)));
3154 uint8_t channel = si->channel ? si->channel: 22;
3168 sdp_list_append(NULL, &rfcomm_uuid), sdp_data_alloc(SDP_UINT8, &channel)));
3261 uint8_t channel = si->channel ? si->channel: 14;
3275 sdp_list_append(NULL, &rfcomm_uuid), sdp_data_alloc(SDP_UINT8, &channel)));
3348 uint8_t channel = si->channel ? si->channel : 16;
3362 sdp_list_append(NULL, &rfcomm_uuid), sdp_data_alloc(SDP_UINT8, &channel)));
3529 { "channel", 1, 0, 'c' },
3536 "\tadd [--handle=RECORD_HANDLE --channel=CHANNEL] service\n";
3562 si.channel = atoi(optarg);
3564 si.channel = strtol(optarg + 2, NULL, 16);