/external/syslinux/ |
README.version | 4 Owners: ghartman, cloud-android-devs
|
/external/libusb/examples/ |
listdevs.c | 24 static void print_devs(libusb_device **devs) 30 while ((dev = devs[i++]) != NULL) { 54 libusb_device **devs; local 62 cnt = libusb_get_device_list(NULL, &devs); 66 print_devs(devs); 67 libusb_free_device_list(devs, 1);
|
/external/mesa3d/src/gallium/auxiliary/pipe-loader/ |
pipe_loader.h | 73 * \param devs Array that will be filled with pointers to the devices 79 pipe_loader_probe(struct pipe_loader_device **devs, int ndev); 105 * \param devs Devices to release. 109 pipe_loader_release(struct pipe_loader_device **devs, int ndev); 119 pipe_loader_sw_probe_dri(struct pipe_loader_device **devs, 130 pipe_loader_sw_probe_kms(struct pipe_loader_device **devs, int fd); 140 pipe_loader_sw_probe_null(struct pipe_loader_device **devs); 150 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev); 171 pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev);
|
pipe_loader.c | 50 pipe_loader_probe(struct pipe_loader_device **devs, int ndev) 55 n += backends[i](&devs[n], MAX2(0, ndev - n)); 61 pipe_loader_release(struct pipe_loader_device **devs, int ndev) 66 devs[i]->ops->release(&devs[i]);
|
pipe_loader_sw.c | 131 pipe_loader_sw_probe_dri(struct pipe_loader_device **devs, struct drisw_loader_funcs *drisw_lf) 151 *devs = &sdev->base; 163 pipe_loader_sw_probe_kms(struct pipe_loader_device **devs, int fd) 185 *devs = &sdev->base; 196 pipe_loader_sw_probe_null(struct pipe_loader_device **devs) 216 *devs = &sdev->base; 226 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev) 231 if (!pipe_loader_sw_probe_null(devs)) {
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
program.cpp | 34 const ref_vector<device> &devs, 37 _devices(devs), _kernel_ref_counter(0) { 41 devs, binaries); 45 program::compile(const ref_vector<device> &devs, const std::string &opts, 48 _devices = devs; 50 for (auto &dev : devs) { 68 program::link(const ref_vector<device> &devs, const std::string &opts, 70 _devices = devs; 72 for (auto &dev : devs) {
|
context.cpp | 28 const ref_vector<device> &devs, 30 notify(notify), props(props), devs(devs) { 50 return map(evals(), devs);
|
platform.cpp | 27 platform::platform() : adaptor_range(evals(), devs) { 36 devs.push_back(create<device>(*this, ldev));
|
program.hpp | 44 const ref_vector<device> &devs = {}, 51 void compile(const ref_vector<device> &devs, const std::string &opts, 53 void link(const ref_vector<device> &devs, const std::string &opts,
|
context.hpp | 41 context(const property_list &props, const ref_vector<device> &devs, 63 const std::vector<intrusive_ref<device>> devs; member in class:clover::context
|
platform.hpp | 44 std::vector<intrusive_ref<device>> devs; member in class:clover::platform
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
context.cpp | 36 auto devs = objs(d_devs, num_devs); local 54 return desc(new context(props, devs, notify)); 70 std::vector<cl_device_id> devs; local 80 devs.resize(num_devices); 81 ret = clGetDeviceIDs(d_platform, type, num_devices, devs.data(), 0); 85 return clCreateContext(d_props, num_devices, devs.data(), pfn_notify,
|
program.cpp | 83 auto devs = objs(d_devs, n); local 90 }, devs)) 124 return new program(ctx, devs, map(values(), result)); 137 auto devs = objs(d_devs, n); local 141 }, devs)) 179 auto devs = (d_devs ? objs(d_devs, num_devs) : local 187 prog.compile(devs, opts); 188 prog.link(devs, opts, { prog }); 205 auto devs = (d_devs ? objs(d_devs, num_devs) : local 230 prog.compile(devs, opts, headers) 247 std::vector<device *> devs; local 283 auto devs = validate_link_devices(progs, local [all...] |
/external/webrtc/talk/media/devices/ |
mobiledevicemanager.cc | 38 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs); 49 bool MobileDeviceManager::GetVideoCaptureDevices(std::vector<Device>* devs) { 50 devs->clear(); 62 devs->push_back(Device(name, id));
|
win32devicemanager.cc | 99 static bool GetCoreAudioDevices(bool input, std::vector<Device>* devs); 100 static bool GetWaveDevices(bool input, std::vector<Device>* devs); 162 std::vector<Device>* devs) { 163 devs->clear(); 166 if (!GetCoreAudioDevices(input, devs)) 169 if (!GetWaveDevices(input, devs)) 172 return FilterDevices(devs, kFilteredAudioDevicesName); 271 bool input, std::vector<Device>* devs) { 298 devs->push_back(dev); 316 bool GetWaveDevices(bool input, std::vector<Device>* devs) { [all...] |
linuxdevicemanager.h | 46 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs); 49 virtual bool GetAudioDevices(bool input, std::vector<Device>* devs);
|
macdevicemanager.h | 47 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs); 50 virtual bool GetAudioDevices(bool input, std::vector<Device>* devs);
|
win32devicemanager.h | 49 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs); 52 virtual bool GetAudioDevices(bool input, std::vector<Device>* devs);
|
fakedevicemanager.h | 65 virtual bool GetAudioInputDevices(std::vector<Device>* devs) { 66 *devs = input_devices_; 69 virtual bool GetAudioOutputDevices(std::vector<Device>* devs) { 70 *devs = output_devices_; 79 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs) { 80 *devs = vidcap_devices_;
|
/external/adhd/cras/src/server/ |
cras_iodev_list.c | 45 /* Lists for devs[CRAS_STREAM_INPUT] and devs[CRAS_STREAM_OUTPUT]. */ 46 static struct iodev_list devs[CRAS_NUM_DIRECTIONS]; variable in typeref:struct:iodev_list 77 DL_FOREACH(devs[CRAS_STREAM_OUTPUT].iodevs, dev) 81 DL_FOREACH(devs[CRAS_STREAM_INPUT].iodevs, dev) 113 struct iodev_list *list = &devs[dev->direction]; 151 DL_FOREACH(devs[dev->direction].iodevs, tmp) 155 DL_DELETE(devs[dev->direction].iodevs, dev); 156 devs[dev->direction].size--; 291 DL_FOREACH(devs[CRAS_STREAM_OUTPUT].iodevs, dev) [all...] |
/external/blktrace/btt/ |
Android.mk | 4 LOCAL_SRC_FILES := args.c bt_timeline.c devmap.c devs.c dip_rb.c iostat.c \
|
/external/wpa_supplicant_8/wpa_supplicant/ |
win_if_list.c | 146 pcap_if_t *devs, *dev; local 149 if (pcap_findalldevs(&devs, err) < 0) { 154 for (dev = devs; dev; dev = dev->next) { 158 pcap_freealldevs(devs);
|
/external/tensorflow/tensorflow/core/framework/ |
op_kernel_test.cc | 188 DeviceTypeVector devs; local 189 TF_ASSERT_OK(SupportedDeviceTypesForNode(DeviceTypes(), ndef, &devs)); 190 EXPECT_EQ(1, devs.size()); 191 EXPECT_EQ(DeviceType(DEVICE_CPU), devs[0]); local 199 DeviceTypeVector devs; local 200 TF_ASSERT_OK(SupportedDeviceTypesForNode(DeviceTypes(), ndef, &devs)); 201 EXPECT_EQ(1, devs.size()); 202 EXPECT_EQ(DeviceType(DEVICE_CPU), devs[0]); local 208 DeviceTypeVector devs; local 209 TF_ASSERT_OK(SupportedDeviceTypesForNode(DeviceTypes(), ndef, &devs)); 211 EXPECT_EQ(DeviceType(DEVICE_GPU), devs[0]); local 216 DeviceTypeVector devs; local 224 DeviceTypeVector devs; local 227 EXPECT_EQ(DeviceType(DEVICE_GPU), devs[0]); local 228 EXPECT_EQ(DeviceType(DEVICE_CPU), devs[1]); local 565 DeviceTypeVector devs; local 585 DeviceTypeVector devs; local 606 DeviceTypeVector devs; local [all...] |
/external/autotest/server/site_tests/buffet_PrivetSetupFlow/ |
buffet_PrivetSetupFlow.py | 86 devs = dut_iw_runner.list_interfaces(desired_if_type='AP') 87 if not devs: 89 ap_interface = interface.Interface(devs[0].if_name, host=host) 158 devs = dut_iw_runner.list_interfaces(desired_if_type='managed') 159 if devs: 160 managed_interface = interface.Interface(devs[0].if_name,
|
/external/libpng/contrib/oss-fuzz/ |
README.txt | 29 libpng_read_fuzzer.options original 2015, Chrome Devs Chromium 30 png.dict original 2015, Chrome Devs Chromium
|