/external/ltp/tools/ |
ltp_check | 105 $new_dir = $dir; 106 $new_dir =~ s/ /_/g; 108 `mkdir -p '$new_dir'`; 109 chdir "$new_dir" or die "Can't change to $new_dir\n"; 111 `mv $res[$i] $new_dir`; 112 $res_dirs[$count] = $new_dir; $count++;
|
/external/libyuv/files/tools_libyuv/valgrind/ |
libyuv_tests.py | 66 new_dir = os.path.join(checkout_src, 'tools', 'valgrind') 70 add_suppressions.append(token.replace(script_dir, new_dir))
|
/development/ndk/ |
unify_all.py | 78 new_dir = os.path.join(dst_dir, d) 79 if not os.path.exists(new_dir): 80 logger().debug('Making directory %s', new_dir) 81 os.makedirs(new_dir)
|
/external/toolchain-utils/cros_utils/ |
misc.py | 302 def WorkingDirectory(new_dir): 305 if old_dir != new_dir: 306 msg = 'cd %s' % new_dir 308 os.chdir(new_dir) 309 yield new_dir 310 if old_dir != new_dir:
|
/external/webrtc/tools/valgrind-webrtc/ |
webrtc_tests.py | 78 new_dir = os.path.join(old_base, 'valgrind') 82 add_suppressions.append(token.replace(script_dir, new_dir))
|
/external/squashfs-tools/squashfs-tools/ |
unsquash-1.c | 214 struct dir_ent *new_dir; local 292 new_dir = realloc(dir->dirs, (dir->dir_count + 294 if(new_dir == NULL) 297 dir->dirs = new_dir;
|
unsquash-3.c | 291 struct dir_ent *new_dir; local 370 new_dir = realloc(dir->dirs, (dir->dir_count + 372 if(new_dir == NULL) 375 dir->dirs = new_dir;
|
unsquash-4.c | 260 struct dir_ent *new_dir; local 328 new_dir = realloc(dir->dirs, (dir->dir_count + 330 if(new_dir == NULL) 333 dir->dirs = new_dir;
|
/external/webrtc/webrtc/base/ |
fileutils.cc | 160 Pathname new_dir; local 161 new_dir.SetFolder(new_path.pathname()); 164 if (!CreateFolder(new_dir))
|
/external/boringssl/src/crypto/x509/ |
by_dir.c | 92 static int new_dir(X509_LOOKUP *lu); 99 new_dir, /* new */ 143 static int new_dir(X509_LOOKUP *lu) function
|
/external/libchrome/base/files/ |
file_util.h | 259 FilePath* new_dir);
|
file_util_posix.cc | 556 FilePath* new_dir) { 571 *new_dir = FilePath(dtemp); 577 FilePath* new_dir) { 580 return CreateTemporaryDirInDirImpl(base_dir, mkdtemp_template, new_dir);
|
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
fake_filesystem.py | 895 new_dir = FakeDirectory(component, perm_bits) 896 current_dir.AddEntry(new_dir) 897 current_dir = new_dir [all...] |
fake_filesystem_test.py | 367 new_dir = self.filesystem.GetObject(path) 368 self.assertEqual(os.path.basename(path), new_dir.name) 369 self.assertTrue(stat.S_IFDIR & new_dir.st_mode) 379 new_dir = self.filesystem.GetObject(path) 380 self.assertEqual(os.path.basename(path), new_dir.name) 381 self.assertTrue(stat.S_IFDIR & new_dir.st_mode) 386 new_dir = self.filesystem.GetObject(path) 387 self.assertEqual(os.path.basename(path), new_dir.name) 388 self.assertTrue(stat.S_IFDIR & new_dir.st_mode) [all...] |
/external/autotest/client/common_lib/ |
base_job.py | [all...] |