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

  /system/core/adb/
adb_client.h 43 void adb_set_transport(TransportType type, const char* _Nullable serial, TransportId transport_id);
45 TransportId* _Nullable transport_id);
adb_client.cpp 54 void adb_set_transport(TransportType type, const char* serial, TransportId transport_id) {
57 __adb_transport_id = transport_id;
60 void adb_get_transport(TransportType* type, const char** serial, TransportId* transport_id) {
63 if (transport_id) *transport_id = __adb_transport_id;
adb.h 145 asocket* host_service_to_socket(const char* name, const char* serial, TransportId transport_id);
210 TransportId transport_id, int reply_fd, asocket* s);
services.cpp 341 TransportId transport_id; member in struct:state_info
354 atransport* t = acquire_one_transport(sinfo->transport_type, serial, sinfo->transport_id,
438 asocket* host_service_to_socket(const char* name, const char* serial, TransportId transport_id) {
453 sinfo->transport_id = transport_id;
adb.cpp     [all...]
transport.h 213 * If transport_id is non-zero then only the device with that transport ID will be chosen.
218 atransport* acquire_one_transport(TransportType type, const char* serial, TransportId transport_id,
sockets.cpp 383 TransportId transport_id) {
386 s = host_service_to_socket(name, serial, transport_id);
619 TransportId transport_id = 0; local
668 transport_id = strtoll(service, &service, 10);
695 if (handle_host_request(service, type, serial, transport_id, s->peer->fd, s) == 0) {
710 s2 = create_host_service_socket(service, serial, transport_id);
transport.cpp 718 atransport* acquire_one_transport(TransportType type, const char* serial, TransportId transport_id,
723 if (transport_id != 0) {
725 android::base::StringPrintf("no device with transport id '%" PRIu64 "'", transport_id);
745 if (transport_id) {
746 if (t->id == transport_id) {
1007 // backwards from newlines, even with hypothetical devices named 'transport_id:1'.
1008 *result += " transport_id:";
    [all...]
commandline.cpp 1352 TransportId transport_id = 0; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
cec-funcs.h 23 __u16 transport_id; member in struct:cec_op_arib_data
28 __u16 transport_id; member in struct:cec_op_atsc_data
32 __u16 transport_id; member in struct:cec_op_dvb_data
  /external/webrtc/talk/app/webrtc/
statscollector.cc 309 const StatsReport::Id& transport_id,
316 StatsReport* report = collector->PrepareReport(true, ssrc, transport_id,
322 report = collector->PrepareReport(false, ssrc, transport_id, direction);
496 const StatsReport::Id& transport_id,
531 report->AddId(StatsReport::kStatsValueNameTransportId, transport_id);
788 StatsReport::Id transport_id(GetTransportIdFromProxy(
790 if (!transport_id.get()) {
796 ExtractStatsFromList(voice_info.receivers, transport_id, this,
    [all...]
statscollector.h 95 const StatsReport::Id& transport_id,
statscollector_unittest.cc 1079 std::string transport_id = ExtractStatsValue( local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
nb30.h 130 ULONG transport_id; member in struct:_ACTION_HEADER
  /external/kernel-headers/original/uapi/linux/
cec-funcs.h 168 __u16 transport_id; member in struct:cec_op_arib_data
174 __u16 transport_id; member in struct:cec_op_atsc_data
179 __u16 transport_id; member in struct:cec_op_dvb_data
238 *msg++ = digital->atsc.transport_id >> 8;
239 *msg++ = digital->atsc.transport_id & 0xff;
246 *msg++ = digital->dvb.transport_id >> 8;
247 *msg++ = digital->dvb.transport_id & 0xff;
267 digital->dvb.transport_id = (msg[1] << 8) | msg[2];
    [all...]

Completed in 546 milliseconds