HomeSort by relevance Sort by last modified time
    Searched refs:devs (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /external/mesa3d/src/gallium/state_trackers/clover/core/
context.cpp 30 const std::vector<device *> &devs) :
31 devs(devs), __props(props) {
36 return std::count(devs.begin(), devs.end(), dev);
context.hpp 36 const std::vector<clover::device *> &devs);
45 const std::vector<clover::device *> devs; member in struct:_cl_context
device.hpp 89 return devs.begin();
93 return devs.end();
97 return devs.front();
101 return devs.back();
105 std::vector<device> devs; member in class:clover::device_registry
program.cpp 34 const std::vector<clover::device *> &devs,
40 devs.begin(), devs.end(), binaries.begin());
44 _cl_program::build(const std::vector<clover::device *> &devs) {
48 for (auto dev : devs) {
program.hpp 41 const std::vector<clover::device *> &devs,
44 void build(const std::vector<clover::device *> &devs);
  /external/openssh/
auth2-kbdint.c 49 char *lang, *devs; local
52 devs = packet_get_string(NULL);
55 debug("keyboard-interactive devs %s", devs);
58 authenticated = auth2_challenge(authctxt, devs);
60 free(devs);
auth2-chall.c 105 kbdint_alloc(const char *devs)
117 if (strcmp(devs, "") == 0) {
129 kbdintctxt->devices = xstrdup(devs);
198 auth2_challenge(Authctxt *authctxt, char *devs)
200 debug("auth2_challenge: user=%s devs=%s",
202 devs ? devs : "<no devs>");
204 if (authctxt->user == NULL || !devs)
207 authctxt->kbdintctxt = kbdint_alloc(devs);
    [all...]
  /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 70 * \param devs Array that will be filled with pointers to the devices
76 pipe_loader_probe(struct pipe_loader_device **devs, int ndev);
96 * \param devs Devices to release.
100 pipe_loader_release(struct pipe_loader_device **devs, int ndev);
112 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev);
126 pipe_loader_drm_probe(struct pipe_loader_device **devs, int ndev);
pipe_loader.c 45 pipe_loader_probe(struct pipe_loader_device **devs, int ndev)
50 n += backends[i](&devs[n], MAX2(0, ndev - n));
56 pipe_loader_release(struct pipe_loader_device **devs, int ndev)
61 devs[i]->ops->release(&devs[i]);
pipe_loader_sw.c 54 pipe_loader_sw_probe(struct pipe_loader_device **devs, int ndev)
66 devs[i] = &sdev->base;
  /external/webrtc/talk/media/devices/
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);
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...]
macdevicemanager.cc 94 std::vector<Device>* devs) {
95 devs->clear();
104 devs->push_back(Device(name, dev_ids[i]));
107 return FilterDevices(devs, kFilteredAudioDevicesName);
  /external/mesa3d/src/gallium/state_trackers/clover/api/
context.cpp 30 const cl_device_id *devs,
36 if (!devs || !num_devs ||
40 if (any_of(is_zero<cl_device_id>(), devs, devs + num_devs))
52 std::vector<cl_device_id>(devs, devs + num_devs));
108 return scalar_property<cl_uint>(buf, size, size_ret, ctx->devs.size());
111 return vector_property<cl_device_id>(buf, size, size_ret, ctx->devs);
program.cpp 58 const cl_device_id *devs, const size_t *lengths,
64 if (!count || !devs || !lengths || !binaries)
69 }, devs, devs + count))
105 return new program(*ctx, { devs, devs + count },
135 clBuildProgram(cl_program prog, cl_uint count, const cl_device_id *devs,
141 if (bool(count) != bool(devs) ||
145 if (devs) {
148 }, devs, devs + count)
    [all...]
  /external/libpcap/
pcap-canusb-linux.c 93 libusb_device** devs; local
106 cnt = libusb_get_device_list(fdctx,&devs);
113 libusb_get_device_descriptor(devs[i],&desc);
121 if ((ret = libusb_open(devs[i],&dh)) == 0)
135 libusb_free_device_list(devs,1);
142 libusb_free_device_list(devs,1);
149 libusb_device** devs; local
153 cnt = libusb_get_device_list(ctx,&devs);
159 libusb_get_device_descriptor(devs[i],&desc);
167 if (libusb_open(devs[i],&dh) != 0) continue
    [all...]
  /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/blktrace/btt/
Android.mk 4 LOCAL_SRC_FILES := args.c bt_timeline.c devmap.c devs.c dip_rb.c iostat.c \
  /development/ndk/platforms/android-9/include/linux/mtd/
blktrans.h 56 struct list_head devs; member in struct:mtd_blktrans_ops
  /external/autotest/client/cros/
liststorage.py 194 devs = get_partition_info(partition_path, dev_bus, dev_model,
197 ret.extend(devs)
200 devs = get_partition_info(spath, dev_bus, dev_model, dev_uuid, dev_fs,
203 ret.extend(devs)
  /external/libusb/libusb/
hotplug.c 289 struct libusb_device **devs; local
291 len = (int) libusb_get_device_list(ctx, &devs);
299 usbi_hotplug_match_cb(ctx, devs[i],
304 libusb_free_device_list(devs, 1);

Completed in 353 milliseconds

1 2 3 4 5 6 7 8