HomeSort by relevance Sort by last modified time
    Searched defs:dir (Results 376 - 400 of 902) sorted by null

<<11121314151617181920>>

  /system/extras/latencytop/
latencytop.c 203 DIR *dir; local
209 dir = opendir(dirname);
210 if (!dir) {
211 fprintf(stderr, "Could not open task dir for process %d.\n", pid);
217 while ((ent = readdir(dir))) {
226 closedir(dir);
  /system/extras/tests/sdcard/
sysutil.cpp 410 DIR *dir = opendir(directory); local
412 if (NULL != dir)
417 while((entry = readdir(dir)))
430 closedir(dir);
  /system/vold/
CommandListener.cpp 240 DIR *dir; local
243 if (!(dir = opendir("/proc"))) {
248 while ((de = readdir(dir))) {
269 closedir(dir);
282 DIR *d = opendir(directory);
285 cli->sendMsg(ResponseCode::OperationFailed, "Failed to open asec dir", true);
  /ndk/build/core/
definitions.mk 74 # Function : generate-dir
78 # Usage : $(call generate-dir,<path>)
80 define ev-generate-dir
95 generate-dir = $(eval $(call ev-generate-dir,$1))
98 # Function : generate-file-dir
103 # Usage : $(call generate-file-dir,<file>)
110 define ev-generate-file-dir
111 __ndk_file_dir := $(call parent-dir,$1)
112 $$(call generate-dir,$$(__ndk_file_dir)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileTest.java 53 private static void deleteTempFolder(File dir) {
54 String files[] = dir.list();
57 File f = new File(dir, files[i]);
65 dir.delete();
126 File path = new File("/dir/file");
128 File file = new File(root, "/dir/file");
373 File dir = new File(base, String.valueOf(numDir)); local
378 if (dir.exists()) {
380 dir = new File(base, String.valueOf(numDir));
390 File f1 = new File(dir, "tempfile.tst")
541 File dir = new File(base); local
626 File dir = new File(tempDirectory, platformId local
798 File dir = new File(testdir, "longdirectory" + platformId); local
1218 File dir = null; local
1310 File dir = new File(base, platformId + String.valueOf(dirNumber)); local
1547 File dir = new File(base, platformId + String.valueOf(dirNumber)); local
1644 File dir = new File(base, platformId + String.valueOf(dirNumber)); local
1765 File dir = new File(base, String.valueOf(dirNumber)); local
1872 File dir = new File(base, platformId); local
2069 File dir = tempDirectory; local
2112 File dir = tempDirectory; local
2185 File dir = new File("dir4filetest"); local
2223 File dir = new File(rootDir, dirName); local
    [all...]
RandomAccessFileTest.java 134 File dir = new File("/"); local
135 assertTrue(dir.isDirectory());
137 raf = new RandomAccessFile(dir.getPath(), "r");
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 485 File dir = getInstrumentation().getTargetContext().getFilesDir(); local
486 dir.mkdirs();
488 File file = new File(dir, "test.jpg");
BitmapRegionDecoderTest.java 372 File dir = getInstrumentation().getTargetContext().getFilesDir(); local
373 dir.mkdirs();
374 File file = new File(dir, NAMES_TEMP_FILES[idx]);
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerTest.java 71 File dir = out.getParentFile(); local
72 dir.mkdirs();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jdepend.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
ScenarioData.java 77 File dir = outputDir; local
79 dir = new File(outputDir, subdir);
80 if (!dir.exists()) {
81 dir.mkdir();
84 return new File(dir, name + '.' + extension);
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 110 File dir = getEmptyDir("testAddFile");
113 File f0 = new File(dir, "f0.txt");
114 File f1 = new File(dir, "f1.txt.gz");
115 File f2 = new File(dir, "f2.dat");
116 File f3 = new File(dir, "f2.dat.gz");
177 File dir = getEmptyDir("testAddEntriesInTheFuture"); local
181 FileWriter w0 = new FileWriter(new File(dir, "DropBoxTest@" + (before + 5000) + ".txt"));
186 FileWriter w1 = new FileWriter(new File(dir, "DropBoxTest@" + (before + 100000) + ".txt"));
191 File f2 = new File(dir, "DropBoxTest@" + (before + 100001) + ".txt.gz");
197 new FileOutputStream(new File(dir, "DropBoxTest@" + (before + 100002) + ".lost")).close()
281 File dir = getEmptyDir("testGetNextEntry"); local
327 File dir = getEmptyDir("testSizeLimits"); local
429 File dir = getEmptyDir("testAgeLimits"); local
469 File dir = getEmptyDir("testFileCountLimits"); local
522 File dir = new File(getEmptyDir("testCreateDropBoxManagerWith"), "InvalidDirectory"); local
546 File dir = getEmptyDir("testDropBoxEntrySerialization"); local
711 File dir = getEmptyDir("testDropBoxEntrySerialization"); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessage.java 390 File dir = new File (sdCard.getAbsolutePath() + "/bluetooth/log/"); local
391 dir.mkdirs();
392 File file = new File(dir, "receivedBMessage.txt");
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
FileObserverTest.java 44 File dir = getContext().getFilesDir(); local
45 mTestFile = new File(dir, TEST_FILE);
47 mTestDir = new File(dir, TEST_DIR);
80 * 1. Observe a dir, when it's child file have been written and closed,
82 * 2. While stop observer a dir, observer should't get any event while delete it's child file.
83 * 3. Observer a dir, when create delete a child file and delete self,
85 * 4. Observer a file, the file moved from dir and the file moved to dir, move the file,
87 * moved from dir observer should get moved-from event,
88 * moved to dir observer should get moved-to event
141 File dir = getContext().getFilesDir(); local
    [all...]
  /development/tools/idegen/src/com/android/idegen/
IntellijProject.java 167 File dir = mod.getDir(); local
168 File gitRoot = new File(dir, ".git");
170 sb.append(" <mapping directory=\"").append(dir.getAbsolutePath())
  /external/blktrace/btreplay/
btrecord.c 106 static int find_traces = 0; // Boolean: Find traces in dir
110 "\t[ -d <dir> : --input-directory=<dir> ] Default: .\n" \
111 "\t[ -D <dir> : --output-directory=<dir>] Default: .\n" \
360 DIR *dir = opendir(idir); local
362 if (dir == NULL) {
367 while ((ent = readdir(dir)) != NULL) {
381 closedir(dir);
    [all...]
  /external/chromium/chrome/browser/importer/
firefox2_importer.cc 391 // - Firefox install dir (default search engines)
392 // - the profile dir (user added search engines)
393 FilePath dir = app_path_.AppendASCII("searchplugins"); local
394 FindXMLFilesInDir(dir, files);
639 const FilePath& dir,
641 file_util::FileEnumerator file_enum(dir, false,
  /external/chromium_org/chrome/browser/chromeos/app_mode/
kiosk_app_data.cc 61 base::FilePath dir = icon_path.DirName(); local
62 if (!base::PathExists(dir))
63 CHECK(base::CreateDirectory(dir));
  /external/chromium_org/chrome/browser/download/
save_page_browsertest.cc 311 base::FilePath* dir) {
313 *dir = save_dir_.path().AppendASCII(prefix + "_files");
388 base::FilePath full_file_name, dir; local
389 GetDestinationPaths("a", &full_file_name, &dir);
398 ASSERT_TRUE(GetCurrentTab(browser())->SavePage(full_file_name, dir,
405 EXPECT_FALSE(base::PathExists(dir));
418 base::FilePath full_file_name, dir; local
419 GetDestinationPaths("a", &full_file_name, &dir);
428 ASSERT_TRUE(GetCurrentTab(browser())->SavePage(full_file_name, dir,
477 base::FilePath full_file_name, dir; local
508 base::FilePath full_file_name, dir; local
542 base::FilePath full_file_name, dir; local
598 base::FilePath full_file_name, dir; local
637 base::FilePath dir = save_dir_.path().AppendASCII( local
678 base::FilePath full_file_name, dir; local
724 base::FilePath dir = download_dir.AppendASCII("test.exe_files"); local
    [all...]
  /external/chromium_org/chrome/browser/themes/
browser_theme_pack_unittest.cc 567 base::ScopedTempDir dir; local
568 ASSERT_TRUE(dir.CreateUniqueTempDir());
569 base::FilePath file = dir.path().AppendASCII("data.pak");
591 base::ScopedTempDir dir; local
592 ASSERT_TRUE(dir.CreateUniqueTempDir());
593 base::FilePath file = dir.path().AppendASCII("theme_data.pak");
  /external/chromium_org/chrome/test/chromedriver/
util.cc 87 base::ScopedTempDir dir; local
88 if (!dir.CreateUniqueTempDir())
89 return Status(kUnknownError, "unable to create temp dir");
91 base::FilePath archive = dir.path().AppendASCII("temp.zip");
94 return Status(kUnknownError, "could not write file to temp dir");
  /external/chromium_org/content/browser/fileapi/
dragged_file_util_unittest.cc 59 const FileSystemURL& dir,
62 dir.origin(),
63 dir.mount_type(),
64 dir.virtual_path().Append(name));
201 FileSystemURL dir = directories.front(); local
206 file_system_context(), dir, &entries));
209 dir, entries[i].name);
220 FileSystemURL dir = directories.front(); local
225 file_system_context(), dir, &entries));
228 dir, entries[i].name)
432 FileSystemURL dir = directories.front(); local
    [all...]
  /external/chromium_org/sync/engine/
sync_directory_update_handler_unittest.cc 53 syncable::Directory* dir() { function in class:syncer::SyncDirectoryUpdateHandlerProcessUpdateTest
103 syncable::ModelNeutralWriteTransaction trans(FROM_HERE, UNITTEST, dir());
117 SyncDirectoryUpdateHandler handler(dir(), BOOKMARKS, ui_worker());
139 syncable::ReadTransaction trans(FROM_HERE, dir());
155 SyncDirectoryUpdateHandler handler(dir(), BOOKMARKS, ui_worker());
177 syncable::ReadTransaction trans(FROM_HERE, dir());
189 SyncDirectoryUpdateHandler handler(dir(), PREFERENCES, ui_worker());
208 syncable::ReadTransaction trans(FROM_HERE, dir());
220 SyncDirectoryUpdateHandler handler(dir(), BOOKMARKS, ui_worker());
229 dir()->GetDownloadProgress(BOOKMARKS, &saved)
    [all...]
  /external/chromium_org/sync/internal_api/
base_node.cc 192 syncable::Directory* dir = GetTransaction()->GetDirectory(); local
194 return dir->HasChildren(trans, GetEntry()->GetId());
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.cpp 243 ScrollDirection dir = pressedPartScrollDirection(); local
244 if (dir == ScrollUp || dir == ScrollLeft) {

Completed in 666 milliseconds

<<11121314151617181920>>