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

  /external/autotest/client/common_lib/cros/fake_device_server/
commands.py 41 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
103 GET .../(command_id) returns a 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]
commands_unittest.py 56 command_id = new_command['id']
59 self.commands.device_commands[DEVICE_ID][command_id],
77 COMMAND_ID = 'command_id'
80 self.commands.device_commands[DEVICE_ID][COMMAND_ID] = COMMAND_RESOURCE
81 returned_json = self.commands.GET(COMMAND_ID, deviceId=DEVICE_ID)
  /external/autotest/client/common_lib/cros/fake_device_server/client_lib/
commands.py 24 def get_command(self, command_id):
25 """Returns info about the given command using |command_id|.
27 @param command_id: valid id for a command.
29 request = urllib2.Request(self.get_url([command_id]),
38 @param command_id: valid id for a command.
46 def update_command(self, command_id, data, replace=False):
49 @param command_id: id of the command to update.
58 request = urllib2.Request(self.get_url([command_id]), json.dumps(data),
  /device/google/bonito/sdm710/kernel-headers/linux/
msm_pft.h 48 __u32 command_id; member in struct:pft_command_response