HomeSort by relevance Sort by last modified time
    Searched refs:vid (Results 26 - 50 of 232) sorted by null

12 3 4 5 6 7 8 910

  /external/autotest/client/common_lib/cros/
power_cycle_usb_util.py 75 def power_cycle_usb_vidpid(dut, board, vid, pid):
77 Power cycle a usb port on DUT via peripharel's VID and PID.
79 When only the VID and PID of the peripharel is known, a search is needed
80 to decide which port it connects to by its VID and PID and look up the gpio
86 @param vid: Vendor ID of the peripharel device.
89 @raise KeyError if the target device wasn't found by given VID and PID.
92 bus_idx, port_idx = get_port_number_from_vidpid(dut, vid, pid)
94 raise KeyError('Couldn\'t find target device, {}:{}.'.format(vid, pid))
105 def get_port_number_from_vidpid(dut, vid, pid):
113 @param vid: Vendor ID of the peripharel device
    [all...]
  /external/ipsec-tools/src/racoon/
nattraversal.c 82 * check if the given vid is NAT-T.
85 natt_vendorid (int vid)
89 vid == VENDORID_NATT_00 ||
92 vid == VENDORID_NATT_01 ||
95 vid == VENDORID_NATT_02 ||
96 vid == VENDORID_NATT_02_N ||
99 vid == VENDORID_NATT_03 ||
102 vid == VENDORID_NATT_04 ||
105 vid == VENDORID_NATT_05 ||
108 vid == VENDORID_NATT_06 |
    [all...]
  /external/strace/tests/
nlattr_mdba_mdb_entry.c 125 .vid = 0xcdef,
142 PRINT_FIELD_U(", ", entry, vid);
165 PRINT_FIELD_U(", ", entry, vid);
  /external/strace/tests-m32/
nlattr_mdba_mdb_entry.c 125 .vid = 0xcdef,
142 PRINT_FIELD_U(", ", entry, vid);
165 PRINT_FIELD_U(", ", entry, vid);
  /external/strace/tests-mx32/
nlattr_mdba_mdb_entry.c 125 .vid = 0xcdef,
142 PRINT_FIELD_U(", ", entry, vid);
165 PRINT_FIELD_U(", ", entry, vid);
  /toolchain/binutils/binutils-2.27/binutils/
windmc.c 301 mc_add_node_lang (mc_node *root, const mc_keyword *lang, rc_uint_type vid)
310 ret->vid = vid;
322 if (h->vid > vid)
324 if (h->vid == vid)
325 fatal ("double defined message id %ld.\n", (long) vid);
370 write_header_define (FILE *fp, const unichar *sym_name, rc_uint_type vid, const unichar *typecast, mc_node_lang *nl)
380 fprintf (fp, "//\n// MessageId: 0x%lu\n//\n", (unsigned long) vid);
    [all...]
mcparse.y 61 %type<ival> id vid sefasy_def
183 cur_node->vid = ($1 & 0xffffUL) | mc_sefa_val;
189 id: MCMESSAGEID '=' vid { $$ = $3; }
194 vid: /* empty */ label
269 h = mc_add_node_lang (cur_node, $1, cur_node->vid);
  /external/autotest/client/common_lib/cros/cfm/usb/
usb_device_spec_unittest.py 12 vid='vid',
18 self.assertEqual(self._spec.vendor_id, 'vid')
27 self.assertEqual(self._spec.vid_pid, 'vid:pid')
usb_device.py 10 vid,
21 @param vid: Vendor ID. String.
33 self._vid = vid
  /frameworks/base/cmds/hid/jni/
com_android_commands_hid_Device.h 40 static Device* open(int32_t id, const char* name, int32_t vid, int32_t pid,
  /frameworks/base/cmds/hid/src/com/android/commands/hid/
Device.java 47 private static native long nativeOpenDevice(String name, int id, int vid, int pid,
52 public Device(int id, String name, int vid, int pid, byte[] descriptor, byte[] report) {
59 args.argi2 = vid;
64 args.arg1 = id + ":" + vid + ":" + pid;
  /external/iproute2/bridge/
fdb.c 41 " [ local | static | dynamic ] [ dst IPADDR ] [ vlan VID ]\n"
43 " bridge fdb [ show [ br BRDEV ] [ brport DEV ] [ vlan VID ] [ state STATE ] ]\n");
100 __u16 vid = 0; local
129 vid = rta_getattr_u16(tb[NDA_VLAN]);
131 if (filter_vlan && filter_vlan != vid)
183 if (vid) {
185 jsonw_uint_field(jw_global, "vlan", vid);
187 fprintf(fp, "vlan %hu ", vid);
424 short vid = -1; local
476 if (vid >= 0
    [all...]
  /external/syslinux/core/legacynet/
idle.c 52 * Return VID:DID as a single number, with the VID in the high word
59 #define PCI_DEV(vid, did) (((vid) << 16) + (did))
  /packages/services/Car/car-usb-handler/src/android/car/usb/handler/
AoapInterface.java 141 final int vid = device.getVendorId(); local
143 return vid == USB_ACCESSORY_VENDOR_ID
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/setting/usb/
AoapInterface.java 140 final int vid = device.getVendorId(); local
142 return vid == USB_ACCESSORY_VENDOR_ID
  /prebuilts/go/darwin-x86/src/net/
interface_bsd_test.go 15 func (ti *testInterface) setBroadcast(vid int) error {
17 ti.name = fmt.Sprintf("vether%d", vid)
19 ti.name = fmt.Sprintf("vlan%d", vid)
  /prebuilts/go/linux-x86/src/net/
interface_bsd_test.go 15 func (ti *testInterface) setBroadcast(vid int) error {
17 ti.name = fmt.Sprintf("vether%d", vid)
19 ti.name = fmt.Sprintf("vlan%d", vid)
  /external/wpa_supplicant_8/src/ap/
vlan_full.c 361 const char *br_name, int vid,
369 tagged_interface, vid);
371 os_snprintf(vlan_ifname, sizeof(vlan_ifname), "vlan%d", vid);
375 if (!vlan_add(tagged_interface, vid, vlan_ifname))
387 static void vlan_bridge_name(char *br_name, struct hostapd_data *hapd, int vid)
393 hapd->conf->vlan_bridge, vid);
396 tagged_interface, vid);
398 os_snprintf(br_name, IFNAMSIZ, "brvlan%d", vid);
404 int vid)
415 vid, hapd)
    [all...]
  /external/autotest/client/site_tests/camera_V4L2/src/
camera_characteristics.cc 96 std::string vid, pid; local
135 vid.clear();
145 vid = tmp_vid;
149 tmp_device_infos[camera_id].usb_vid = vid;
156 } else if (!vid.empty() && !pid.empty()) {
159 if (tmp_device_infos[camera_id].usb_vid != vid ||
162 << "vid: " << vid << " pid: " << pid;
  /bionic/libc/kernel/uapi/linux/
if_bridge.h 120 __u16 vid; member in struct:bridge_vlan_info
135 __u16 vid; member in struct:bridge_vlan_xstats
194 __u16 vid; member in struct:br_mdb_entry
  /external/autotest/server/site_tests/enterprise_CFM_SiSFwUpdater/
enterprise_CFM_SiSFwUpdater.py 53 self.vid = self._SIS_VID
157 self.vid, self.pid)
160 'vid:pid {}:{}'.format(self.vid, self.pid))
  /external/iproute2/include/uapi/linux/
if_bridge.h 136 __u16 vid; member in struct:bridge_vlan_info
154 __u16 vid; member in struct:bridge_vlan_xstats
241 __u16 vid; member in struct:br_mdb_entry
  /external/kernel-headers/original/uapi/linux/
if_bridge.h 136 __u16 vid; member in struct:bridge_vlan_info
154 __u16 vid; member in struct:bridge_vlan_xstats
241 __u16 vid; member in struct:br_mdb_entry
  /external/syslinux/com32/modules/
ethersel.c 64 unsigned long vid, did, m1, m2; local
69 vid = strtoul(p, &p, 16);
74 *idptr = (did << 16) + vid;
  /system/tpm/trunks/ftdi/
mpsse.c 62 for (i = 0; supported_devices[i].vid != 0; i++) {
63 mpsse = Open(supported_devices[i].vid, supported_devices[i].pid, mode, freq,
75 * Open device by VID/PID
77 * @vid - Device vendor ID.
88 struct mpsse_context* Open(int vid,
96 return OpenIndex(vid, pid, mode, freq, endianess, interface, description,
101 * Open device by VID/PID/index
103 * @vid - Device vendor ID.
117 struct mpsse_context* OpenIndex(int vid,
148 if (!ftdi_usb_open_desc_index(&mpsse->ftdi, vid, pid, description, serial
483 int vid = 0; local
    [all...]

Completed in 953 milliseconds

12 3 4 5 6 7 8 910