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

  /system/extras/tests/workloads/
pwrtest.sh 92 devdir="/data/local/tmp"
132 adb shell mkdir -p $devdir
135 adb push $CMDDIR/$file $devdir
188 (adb shell "cd $devdir && nohup $cmdline > test.out") &
202 adb pull $devdir/test.out
254 echo Copying $scripts to device $devdir...
256 adb shell ln -s /data/benchmarktest/hwuimacro/$HWUIMACRO $devdir/$HWUIMACRO
292 adb shell "cd $devdir && ./systemapps.sh -A -T -i 1"
  /external/autotest/client/site_tests/security_HardlinkRestrictions/
security_HardlinkRestrictions.py 148 devdir = tempfile.mkdtemp(prefix="hardlinks-", dir="/dev")
149 self._rmdir.append(devdir)
150 os.chown(devdir, uid, 0)
151 null = os.path.join(devdir, "null")
152 dev_evil = os.path.join(devdir, "evil")
153 dev_not_evil = os.path.join(devdir, "not-evil")
  /hardware/interfaces/camera/provider/2.4/default/
ExternalCameraProvider.cpp 221 DIR* devdir = opendir(kDevicePath); local
222 if(devdir == 0) {
228 while ((de = readdir(devdir)) != 0) {
243 closedir(devdir);
  /external/webrtc/talk/media/devices/
linuxdevicemanager.cc 136 static void ScanDeviceDirectory(const std::string& devdir,
141 if (directoryIterator->Iterate(rtc::Pathname(devdir))) {
144 std::string device_name = devdir + filename;
  /system/core/libusbhost/
usbhost.c 102 DIR *devdir; local
106 devdir = opendir(busname);
107 if(devdir == 0) return 0;
109 while ((de = readdir(devdir)) && !done) {
114 } // end of devdir while
115 closedir(devdir);

Completed in 332 milliseconds