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

12 3 4 5 6 7 8 91011>>

  /frameworks/native/vulkan/vkjson/
vkjson_info.cc 39 std::string device_name; member in struct:Options
65 options->device_name = arg2;
75 !options->device_name.empty())) {
80 if (options->device_index != unsignedNegOne && !options->device_name.empty()) {
91 options->device_index == unsignedNegOne && options->device_name.empty()) {
111 } else if (!options.device_name.empty()) {
113 if (device.properties.deviceName == options.device_name) {
118 std::cerr << "Error: device '" << options.device_name
174 !options.device_name.empty()) {
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/vkjson/
vkjson_info.cc 36 std::string device_name; member in struct:Options
62 options->device_name = arg2;
72 !options->device_name.empty())) {
77 if (options->device_index != unsignedNegOne && !options->device_name.empty()) {
88 options->device_index == unsignedNegOne && options->device_name.empty()) {
108 } else if (!options.device_name.empty()) {
110 if (device.properties.deviceName == options.device_name) {
115 std::cerr << "Error: device '" << options.device_name
162 !options.device_name.empty()) {
  /external/tensorflow/tensorflow/python/debug/cli/
evaluator.py 54 device_name: If device name prefix exists, the device name; otherwise,
71 device_name = debug_tensor_name[
75 device_name = None
103 return device_name, node_name, output_slot, debug_op, exec_index
135 device_name, node_name, output_slot, debug_op, exec_index = (
141 device_name=device_name)[exec_index]
  /external/webrtc/talk/media/devices/
linuxdevicemanager.cc 144 std::string device_name = devdir + filename; local
147 V4LLookup::IsV4L2Device(device_name)) {
148 devices->push_back(Device(device_name, device_name));
156 std::string device_name; local
162 if (device_meta_stream->ReadLine(&device_name) != rtc::SR_SUCCESS) {
168 return device_name;
209 std::string device_name; local
216 device_name = GetVideoDeviceNameK2_6(meta_file_path);
218 if (device_name.empty())
236 LOG(LS_INFO) << "Name for " << device_file_name << " is " << device_name; local
    [all...]
  /external/autotest/server/cros/multimedia/
input_facade_adapter.py 36 def initialize_input_recorder(self, device_name):
39 @param device_name: the name of the input device to record.
42 self._input_proxy.initialize_input_recorder(device_name)
  /external/tensorflow/tensorflow/core/framework/
session_state.h 63 string device_name; member in struct:tensorflow::TensorStore::TensorAndKey
66 return strings::StrCat(tensor_name, ";", id, ";", device_name);
  /device/google/cuttlefish_common/guest/hals/camera/
EmulatedQemuCamera.cpp 39 status_t EmulatedQemuCamera::Initialize(const char* device_name,
43 device_name, facing_dir, frame_dims);
48 status_t res = mQemuCameraDevice.Initialize(device_name);
102 __FUNCTION__, device_name, x, y);
EmulatedQemuCameraDevice.h 49 * device_name - Name of the camera device connected to the host. The name
55 status_t Initialize(const char* device_name);
  /external/tensorflow/tensorflow/core/distributed_runtime/
worker_cache_partial.h 50 Status RefreshDeviceStatus(const string& device_name);
  /external/tensorflow/tensorflow/core/grappler/costs/
virtual_placer.h 44 // If device_name couldn't be parsed successfully, returns empty string.
45 string to_lfqn_or_empty(const string& device_name) const;
  /external/autotest/client/cros/multimedia/
input_facade_native.py 29 def initialize_input_recorder(self, device_name):
32 @param device_name: the name of the input device to record.
35 self.recorder = input_event_recorder.InputEventRecorder(device_name)
37 self.recorder.device_name, self.recorder.device_node)
  /external/toybox/toys/other/
eject.c 62 char *device_name = "/dev/cdrom"; local
64 if (*toys.optargs) device_name = *toys.optargs;
66 fd = xopen(device_name, O_RDONLY | O_NONBLOCK);
  /external/e2fsprogs/ext2ed/
disk.c 62 wprintw (command_win,"Error - Failed to seek to offset %ld in device %s\n",offset,device_name);
68 wprintw (command_win,"Error - Failed to read from offset %ld in device %s\n",offset,device_name);
118 wprintw (command_win,"Error - Failed to seek to offset %ld in device %s\n",offset,device_name);
124 wprintw (command_win,"Error - Failed to write to offset %ld in device %s\n",offset,device_name);
156 fprintf (fp,"Time: %s\nDevice: %s\n",ctime ((time_t *) &current_time),device_name);
  /external/e2fsprogs/lib/ext2fs/
dupfs.c 35 fs->device_name = 0;
51 retval = ext2fs_get_mem(strlen(src->device_name)+1, &fs->device_name);
54 strcpy(fs->device_name, src->device_name);
  /external/e2fsprogs/resize/
main.c 45 static char *device_name, *io_options; variable
329 device_name = argv[optind++];
335 io_options = strchr(device_name, '?');
349 retval = ext2fs_check_mount_point(device_name, &mount_flags,
354 device_name);
363 fd = ext2fs_open_file(device_name, O_RDWR, 0);
366 device_name);
374 device_name);
383 device_name);
406 retval = resize2fs_setup_tdb(device_name, undo_file, &io_ptr)
    [all...]
  /external/e2fsprogs/debugfs/
e2freefrag.c 36 "device_name\n", prog);
216 static void close_device(char *device_name, ext2_filsys fs)
221 com_err(device_name, retval, "while closing the filesystem.\n");
228 fprintf(f, "Device: %s\n", fs->device_name);
233 com_err(fs->device_name, retval, "while reading block bitmap");
234 close_device(fs->device_name, fs);
242 com_err(fs->device_name, retval, "while collecting chunk info");
243 close_device(fs->device_name, fs);
249 static void open_device(char *device_name, ext2_filsys *fs)
254 retval = ext2fs_open(device_name, flag, 0, 0, unix_io_manager, fs)
282 char *device_name; local
    [all...]
  /external/e2fsprogs/misc/
e2freefrag.c 36 "device_name\n", prog);
216 static void close_device(char *device_name, ext2_filsys fs)
221 com_err(device_name, retval, "while closing the filesystem.\n");
228 fprintf(f, "Device: %s\n", fs->device_name);
233 com_err(fs->device_name, retval, "while reading block bitmap");
234 close_device(fs->device_name, fs);
242 com_err(fs->device_name, retval, "while collecting chunk info");
243 close_device(fs->device_name, fs);
249 static void open_device(char *device_name, ext2_filsys *fs)
254 retval = ext2fs_open(device_name, flag, 0, 0, unix_io_manager, fs)
282 char *device_name; local
    [all...]
  /external/autotest/client/bin/input/
input_event_recorder.py 147 def __init__(self, device_name):
150 @param device_name: the device name of the input device node to record.
153 self.device_name = device_name
154 self.device_node = self.get_device_node_by_name(device_name)
156 err_msg = 'Failed to find the device node of %s' % device_name
164 def get_device_node_by_name(self, device_name):
181 @param device_name: the device name of the target input device node.
188 device_pattern = re.compile('N: Name=.*%s' % device_name, re.I)
309 device_name = 'Atmel maXTouch Touchpad
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
process_function_library_runtime.cc 112 const string& device_name, int64* incarnation) {
113 FunctionLibraryRuntime* flr = GetFLR(device_name);
115 return errors::InvalidArgument("Device name: ", device_name, " not found");
122 const string& device_name, DeviceContext** device_context) {
124 FunctionLibraryRuntime* flr = GetFLR(device_name);
126 return errors::InvalidArgument("Device name: ", device_name, " not found.");
144 const string& device_name) const {
146 if (device_name != kDefaultFLRDevice) {
147 if (!device_mgr_->LookupDevice(device_name, &device).ok()) {
148 LOG(ERROR) << "Could not find device: " << device_name;
    [all...]
process_function_library_runtime.h 77 // Returns the FunctionLibraryRuntime for the corresponding device_name.
78 FunctionLibraryRuntime* GetFLR(const string& device_name) const;
80 // Returns the device incarnation for the given device_name.
81 Status GetDeviceIncarnation(const string& device_name, int64* incarnation);
84 // on device `device_name` and a `local_handle`, creates a handle and returns
88 const string& function_key, const string& device_name,
94 // For the given handle instantiated on device `device_name` returns the local
96 // instantiated on `device_name` returns kInvalidLocalHandle.
98 const string& device_name, FunctionLibraryRuntime::Handle handle);
101 // `device_name`
    [all...]
  /external/autotest/client/common_lib/cros/cfm/
cras_node_collector.py 112 device_name = self._get_device_name(device_data, device_id)
119 device_name=device_name)
129 device_name = self._get_device_name(device_data, device_id)
136 device_name=device_name)
  /external/f2fs-tools/tools/sg_write_buffer/include/
sg_pt.h 33 int scsi_pt_open_device(const char * device_name, bool read_only, int verbose);
39 int scsi_pt_open_flags(const char * device_name, int flags, int verbose);
44 /* Assumes dev_fd is an "open" file handle associated with device_name. If
47 * device_name. Returns 1 if SCSI generic pass-though device, returns 2 if
52 int check_pt_file_handle(int dev_fd, const char * device_name, int verbose);
  /external/webrtc/webrtc/test/
vcm_capturer.cc 27 char device_name[256]; local
29 if (device_info->GetDeviceName(0, device_name, sizeof(device_name),
  /device/google/cuttlefish_common/guest/commands/vsoc_input_service/
virtual_device_base.h 29 VirtualDeviceBase(const char* device_name, uint16_t product_id);
  /external/autotest/server/site_tests/enterprise_CFM_USBPeripheralHotplugStress/
enterprise_CFM_USBPeripheralHotplugStress.py 78 device_name = peripheral_dict.get(device_type)
83 if device_name != prefered_peripheral:
86 if device_name == prefered_peripheral:
92 if ((not hub_on and device_name != prefered_peripheral) and

Completed in 1519 milliseconds

12 3 4 5 6 7 8 91011>>