Home
last modified time | relevance | path

Searched refs:command_id (Results 1 – 11 of 11) sorted by relevance

/external/autotest/client/common_lib/cros/fake_device_server/
Dcommands.py41 command_id = '%s_%03d' % (uuid.uuid4().hex[0:6],
44 return command_id
92 command_id = self._generate_command_id()
93 command_resource['id'] = command_id
95 self.device_commands[device_id][command_id] = command_resource
143 for command_id, resource in self.device_commands[device_id].iteritems():
144 if command_id == requested_command_id:
145 return self.device_commands[device_id][command_id]
Dcommands_unittest.py56 command_id = new_command['id']
59 self.commands.device_commands[DEVICE_ID][command_id],
DREADME31 <command_id>
/external/u-boot/drivers/nvme/
Dnvme.h229 __u16 command_id; member
241 __u16 command_id; member
283 __u16 command_id; member
360 __u16 command_id; member
372 __u16 command_id; member
385 __u16 command_id; member
399 __u16 command_id; member
413 __u16 command_id; member
423 __u16 command_id; member
433 __u16 command_id; member
[all …]
Dnvme.c181 cmd->common.command_id = nvme_get_cmd_id(); in nvme_submit_sync_cmd()
/external/autotest/client/common_lib/cros/fake_device_server/client_lib/
Dcommands.py24 def get_command(self, command_id): argument
29 request = urllib2.Request(self.get_url([command_id]),
46 def update_command(self, command_id, data, replace=False): argument
58 request = urllib2.Request(self.get_url([command_id]), json.dumps(data),
/external/autotest/client/cros/audio/
Dcmd_utils.py211 command_id = _command_serial_number.next()
212 prefix = '[%04d] ' % command_id
231 ps.command_id = command_id
/external/arm-trusted-firmware/drivers/arm/css/scmi/
Dscmi_common.c123 uint32_t command_id, uint32_t *attr) in scmi_proto_msg_attr() argument
139 SCMI_PAYLOAD_ARG1(mbx_mem->payload, command_id); in scmi_proto_msg_attr()
/external/arm-trusted-firmware/include/drivers/arm/css/
Dscmi.h142 int scmi_proto_msg_attr(void *p, uint32_t proto_id, uint32_t command_id,
/external/v4l2_codec2/accel/
Dv4l2_device.h547 bool IsCommandSupported(uint32_t command_id);
Dv4l2_device.cc1835 bool V4L2Device::IsCommandSupported(uint32_t command_id) { in IsCommandSupported() argument
1840 cmd.cmd = command_id; in IsCommandSupported()