Searched refs:dev (Results 201 - 225 of 4580) sorted by relevance

1234567891011>>

/external/clang/utils/ABITest/
H A Dbuild-and-summarize.sh11 $dir/build.sh $1 &> /dev/null || true
/external/cmockery/cmockery_0_1_2/packages/
H A Drpm.sh61 grep "Red Hat.*release 7" /etc/issue >/dev/null 2>&1 && destdir=rh7
62 grep "Red Hat.*release 8" /etc/issue >/dev/null 2>&1 && destdir=rh8
63 grep "Red Hat.*release 9" /etc/issue >/dev/null 2>&1 && destdir=rh9
64 if grep Fedora /etc/issue >/dev/null; then
/external/eigen/bench/
H A Dbench_multi_compilers.sh21 ${CLIST[$i]} $benchfile -I.. -o .bench && ./.bench 2> /dev/null
/external/genext2fs/
H A Dtest-gen.lib18 dd if=/dev/zero of=file.$1 bs=$size count=1 2>/dev/null
46 digest=`md5sum ext2.img 2>/dev/null | cut -f 1 -d " "`
50 digest=`md5 ext2.img 2>/dev/null | cut -f 4 -d " "`
/external/iputils/
H A Dipg4 modprobe pg3 >& /dev/null
5 modprobe pktgen >& /dev/null
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/bin/
H A Drwtop-report7 if expr match "$i" "-" > /dev/null ; then
/external/mesa3d/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader.h81 * \param dev Device the screen will be created for.
87 pipe_loader_create_screen(struct pipe_loader_device *dev,
136 pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd);
H A Dpipe_loader_drm.c60 #define pipe_loader_drm_device(dev) ((struct pipe_loader_drm_device *)dev)
106 struct pipe_loader_device *dev = &ddev->base; local
110 if (dev->u.pci.vendor_id != driver_map[i].vendor_id)
114 dev->driver_name = driver_map[i].driver;
119 if (dev->u.pci.chip_id == driver_map[i].chip_ids[j]) {
120 dev->driver_name = driver_map[i].driver;
129 debug_printf("driver for %04x:%04x: %s\n", dev->u.pci.vendor_id,
130 dev->u.pci.chip_id, dev
190 pipe_loader_drm_probe_fd(struct pipe_loader_device **dev, int fd) argument
242 pipe_loader_drm_release(struct pipe_loader_device **dev) argument
255 pipe_loader_drm_create_screen(struct pipe_loader_device *dev, const char *library_paths) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/
H A Dautogen.sh10 do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
/external/strace/linux/
H A Dioctlent.sh50 (cd "$dir" && for f; do grep "$regexp" "$f" "uapi/$f" 2>/dev/null; done) |
91 (cd $dir && grep $regexp $files 2>/dev/null) | \
116 line=$( (cd $dir && grep -h $regexp 2>/dev/null $files) | grep -v '\<_IO')
122 if ! grep "\<$base\>" ioctldefs.h >/dev/null 2>/dev/null; then
128 ${CPP:-cpp} -P $(grep -l $base $files 2>/dev/null) | sed '/^$/d' | \
147 if ! grep "\<$base\>" ioctldefs.h >/dev/null 2>/dev/null; then
/external/strace/tests/
H A Dcount.test20 LC_ALL=C grep -E -x -e "$*" $LOG > /dev/null || {
28 grep nanosleep $LOG > /dev/null ||
/external/valgrind/main/none/tests/
H A Dfdleak_creat.stderr.exp13 Open file descriptor ...: /dev/null
/external/qemu/hw/android/goldfish/
H A Dpipe.c147 pipe_new0(PipeDevice* dev) argument
151 pipe->device = dev;
156 pipe_new(uint64_t channel, PipeDevice* dev) argument
158 Pipe* pipe = pipe_new0(dev);
253 pipe_load( PipeDevice* dev, QEMUFile* file, int version_id ) argument
279 pipe = pipe_new(channel, dev);
500 /* A simple pipe service that mimics /dev/zero, you can write anything to
954 struct goldfish_device dev; member in struct:PipeDevice
972 pipeDevice_doCommand( PipeDevice* dev, uint32_t command ) argument
974 Pipe** lookup = pipe_list_findp_channel(&dev
1177 PipeDevice *dev = (PipeDevice *)opaque; local
1243 PipeDevice* dev = opaque; local
1269 PipeDevice* dev = opaque; local
1354 PipeDevice* dev = pipe->device; local
[all...]
/external/e2fsprogs/misc/
H A Dblkid.c54 "[-s <tag>] [-t <token>]\n [-w <file>] [dev ...]\n"
55 "\t-c\tcache file (default: /etc/blkid.tab, /dev/null = none)\n"
62 "\t-w\twrite cache to different file (/dev/null = no write)\n"
168 static void pretty_print_dev(blkid_dev dev) argument
177 if (dev == NULL) {
186 devname = blkid_dev_devname(dev);
191 iter = blkid_tag_iterate_begin(dev);
219 static void print_tags(blkid_dev dev, char *show[], int numtag, int output) argument
225 if (!dev)
229 pretty_print_dev(dev);
373 blkid_dev dev; local
392 blkid_dev dev; local
408 blkid_dev dev = blkid_get_dev(cache, devices[i], local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_screen.c33 struct nouveau_device *dev = nouveau_screen(pscreen)->device; local
36 util_snprintf(buffer, sizeof(buffer), "NV%02X", dev->chipset);
85 struct nouveau_device *dev = nouveau_screen(pscreen)->device; local
89 ret = nouveau_bo_name_ref(dev, whandle->handle, &bo);
120 nouveau_screen_init(struct nouveau_screen *screen, struct nouveau_device *dev) argument
134 if (dev->chipset < 0xc0) {
142 ret = nouveau_object_new(&dev->object, 0, NOUVEAU_FIFO_CHANNEL_CLASS,
146 screen->device = dev;
160 ret = nouveau_getparam(dev, NOUVEAU_GETPARAM_PTIMER_TIME, &time);
187 screen->mm_GART = nouveau_mm_create(dev,
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_screen.c33 struct nouveau_device *dev = nouveau_screen(pscreen)->device; local
36 util_snprintf(buffer, sizeof(buffer), "NV%02X", dev->chipset);
85 struct nouveau_device *dev = nouveau_screen(pscreen)->device; local
89 ret = nouveau_bo_name_ref(dev, whandle->handle, &bo);
120 nouveau_screen_init(struct nouveau_screen *screen, struct nouveau_device *dev) argument
134 if (dev->chipset < 0xc0) {
142 ret = nouveau_object_new(&dev->object, 0, NOUVEAU_FIFO_CHANNEL_CLASS,
146 screen->device = dev;
160 ret = nouveau_getparam(dev, NOUVEAU_GETPARAM_PTIMER_TIME, &time);
187 screen->mm_GART = nouveau_mm_create(dev,
[all...]
/external/yaffs2/yaffs2/direct/
H A Dyaffs_fileem2k.c142 int yflash_WriteChunkWithTagsToNAND(yaffs_Device *dev,int chunkInNAND,const __u8 *data, yaffs_ExtendedTags *tags) argument
158 written = write(h,data,dev->nDataBytesPerChunk);
165 if(written != dev->nDataBytesPerChunk) return YAFFS_FAIL;
174 if( 0 && dev->isYaffs2)
210 int yflash_ReadChunkWithTagsFromNAND(yaffs_Device *dev,int chunkInNAND, __u8 *data, yaffs_ExtendedTags *tags) argument
226 nread = read(h,data,dev->nDataBytesPerChunk);
228 if(nread != dev->nDataBytesPerChunk) return YAFFS_FAIL;
237 if(0 && dev->isYaffs2)
278 int yflash_MarkNANDBlockBad(struct yaffs_DeviceStruct *dev, int blockNo) argument
289 lseek(h,((blockNo % BLOCKS_PER_HANDLE) * dev
299 yflash_EraseBlockInNAND(yaffs_Device *dev, int blockNumber) argument
338 yflash_InitialiseNAND(yaffs_Device *dev) argument
348 yflash_QueryNANDBlock(struct yaffs_DeviceStruct *dev, int blockNo, yaffs_BlockState *state, int *sequenceNumber) argument
[all...]
/external/iproute2/examples/diffserv/
H A DEdge32-cb-chains18 EGDEV="dev eth1"
43 $TC qdisc add dev $INDEV handle ffff: ingress
55 $TC filter add dev $INDEV parent ffff: protocol ip prio 1 handle 1 fw \
58 $TC filter add dev $INDEV parent ffff: protocol ip prio 2 handle 1 fw \
65 $TC filter add dev $INDEV parent ffff: protocol ip prio 3 handle 1 fw \
68 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1 fw \
75 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 handle 1 fw \
78 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 1 fw \
85 $TC filter add dev $INDEV parent ffff: protocol ip prio 7 handle 2 fw \
130 $TC qdisc ls dev
[all...]
H A DEdge32-cb-u3217 EGDEV="dev eth1"
44 $TC qdisc add dev $INDEV handle ffff: ingress
55 $TC filter add dev $INDEV parent ffff: protocol ip prio 1 u32 \
58 $TC filter add dev $INDEV parent ffff: protocol ip prio 2 u32 \
66 $TC filter add dev $INDEV parent ffff: protocol ip prio 3 u32 \
69 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 u32 \
76 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 u32 \
79 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 u32 \
87 $TC filter add dev $INDEV parent ffff: protocol ip prio 7 u32 \
131 $TC qdisc ls dev
[all...]
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_invitation.c168 struct p2p_device *dev; local
188 dev = p2p_get_device(p2p, sa);
189 if (dev == NULL || (dev->flags & P2P_DEV_PROBE_REQ_ONLY)) {
201 dev = p2p_get_device(p2p, sa);
202 if (dev == NULL) {
229 if (p2p_peer_channels_check(p2p, &p2p->cfg->channels, dev,
238 p2p_channels_dump(p2p, "peer channels", &dev->channels);
239 p2p_channels_intersect(&p2p->cfg->channels, &dev->channels,
318 } else if (go && !(dev
404 struct p2p_device *dev; local
486 p2p_invite_send(struct p2p_data *p2p, struct p2p_device *dev, const u8 *go_dev_addr, int dev_pw_id) argument
574 struct p2p_device *dev; local
[all...]
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_invitation.c168 struct p2p_device *dev; local
188 dev = p2p_get_device(p2p, sa);
189 if (dev == NULL || (dev->flags & P2P_DEV_PROBE_REQ_ONLY)) {
201 dev = p2p_get_device(p2p, sa);
202 if (dev == NULL) {
229 if (p2p_peer_channels_check(p2p, &p2p->cfg->channels, dev,
238 p2p_channels_dump(p2p, "peer channels", &dev->channels);
239 p2p_channels_intersect(&p2p->cfg->channels, &dev->channels,
318 } else if (go && !(dev
404 struct p2p_device *dev; local
486 p2p_invite_send(struct p2p_data *p2p, struct p2p_device *dev, const u8 *go_dev_addr, int dev_pw_id) argument
574 struct p2p_device *dev; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_invitation.c168 struct p2p_device *dev; local
188 dev = p2p_get_device(p2p, sa);
189 if (dev == NULL || (dev->flags & P2P_DEV_PROBE_REQ_ONLY)) {
201 dev = p2p_get_device(p2p, sa);
202 if (dev == NULL) {
229 if (p2p_peer_channels_check(p2p, &p2p->cfg->channels, dev,
238 p2p_channels_dump(p2p, "peer channels", &dev->channels);
239 p2p_channels_intersect(&p2p->cfg->channels, &dev->channels,
318 } else if (go && !(dev
404 struct p2p_device *dev; local
486 p2p_invite_send(struct p2p_data *p2p, struct p2p_device *dev, const u8 *go_dev_addr, int dev_pw_id) argument
574 struct p2p_device *dev; local
[all...]
/external/blktrace/btt/
H A Dunplug_hist.c29 __u32 dev; member in struct:hist_bkt
40 hbp->dev = device;
69 int mjr = hbp->dev >> MINORBITS;
70 int mnr = hbp->dev & ((1 << MINORBITS) - 1);
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dhidgnubbydevice.js14 * @param {!chrome.hid.HidConnectInfo} dev The connection to the device.
19 function HidGnubbyDevice(gnubbies, dev, id) {
22 this.dev = dev;
41 if (!this.dev) return; // Already dead.
70 var dev = this.dev;
71 this.dev = null;
73 chrome.hid.disconnect(dev.connectionId, function() {
75 console.warn(UTIL_fmt('Device ' + dev
[all...]
/external/chromium_org/content/browser/gamepad/
H A Dgamepad_platform_data_fetcher_linux.cc36 bool IsGamepad(udev_device* dev, int* index, std::string* path) { argument
37 if (!udev_device_get_property_value(dev, "ID_INPUT_JOYSTICK"))
40 const char* node_path = udev_device_get_devnode(dev);
44 static const char kJoystickRoot[] = "/dev/input/js";
114 void GamepadPlatformDataFetcherLinux::RefreshDevice(udev_device* dev) { argument
117 if (IsGamepad(dev, &index, &node_path)) {
124 // The device pointed to by dev contains information about the logical
128 dev = udev_device_get_parent_with_subsystem_devtype(
129 dev,
132 if (!dev) {
227 udev_device* dev = udev_device_new_from_syspath(udev_->udev_handle(), path); local
[all...]

Completed in 408 milliseconds

1234567891011>>