Searched defs:directory (Results 1 - 25 of 214) sorted by relevance

123456789

/external/qemu/android/utils/
H A Dhost_bitness.c22 char directory[900]; local
24 // Retrieves the path of the WOW64 system directory, which doesn't
26 unsigned len = GetSystemWow64Directory(directory, sizeof(directory));
/external/chromium_org/sync/internal_api/public/
H A Duser_share.h29 scoped_ptr<syncable::Directory> directory; member in struct:syncer::UserShare
/external/chromium_org/sync/syncable/
H A Dsyncable_read_transaction.cc11 Directory* directory)
12 : BaseTransaction(location, "ReadTransaction", INVALID, directory) {
10 ReadTransaction(const tracked_objects::Location& location, Directory* directory) argument
H A Dsyncable_base_write_transaction.cc14 Directory* directory)
15 : BaseTransaction(location, name, writer, directory) {
10 BaseWriteTransaction( const tracked_objects::Location location, const char* name, WriterTag writer, Directory* directory) argument
H A Dsyncable_model_neutral_write_transaction.cc7 #include "sync/syncable/directory.h"
14 WriterTag writer, Directory* directory)
18 directory) {
23 directory()->CheckInvariantsOnTransactionClose(this, modified_handles_);
12 ModelNeutralWriteTransaction( const tracked_objects::Location& location, WriterTag writer, Directory* directory) argument
/external/openssl/crypto/
H A DLPdir_nyi.c33 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory) argument
H A DLPdir_unix.c65 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory) argument
69 if (ctx == NULL || directory == NULL)
86 (*ctx)->dir = opendir(directory);
H A DLPdir_win.c54 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory) argument
56 if (ctx == NULL || directory == NULL)
65 const char *extdir = directory;
67 size_t dirlen = strlen (directory);
83 if (directory[dirlen-1] != '*')
93 if (directory[dirlen-1] != '/' && directory[dirlen-1] != '\\')
94 extdir = strcat(strcpy (extdirbuf,directory),"/*");
96 extdir = strcat(strcpy (extdirbuf,directory),"*");
/external/chromium_org/sync/internal_api/test/
H A Dsync_manager_for_profile_sync_test.cc9 #include "sync/syncable/directory.h"
23 syncable::Directory* directory = user_share->directory.get(); local
33 if (!directory->InitialSyncEndedForType(it.Get())) {
H A Dtest_user_share.cc8 #include "sync/syncable/directory.h"
32 user_share_->directory.reset(dir_maker_->directory());
37 ignore_result(user_share_->directory.release());
44 if (!user_share_->directory->SaveChanges())
48 user_share_->directory->store_.release();
51 ignore_result(user_share_->directory.release());
54 user_share_->directory.reset(dir_maker_->directory());
72 syncer::syncable::Directory* directory local
[all...]
/external/proguard/src/proguard/io/
H A DDirectoryPump.java27 * This class can read a given file or directory, recursively, applying a given
34 private final File directory; field in class:DirectoryPump
37 public DirectoryPump(File directory) argument
39 this.directory = directory;
48 if (!directory.exists())
50 throw new IOException("No such file or directory");
53 readFiles(directory, dataEntryReader);
65 dataEntryReader.read(new FileDataEntry(directory, file));
H A DFileDataEntry.java34 private final File directory; field in class:FileDataEntry
39 public FileDataEntry(File directory, argument
42 this.directory = directory;
51 // Chop the directory name from the file name and get the right separators.
52 return file.equals(directory) ?
55 .substring(directory.getPath().length() + File.separator.length())
/external/chromium_org/chrome/installer/util/
H A Dcreate_reg_key_work_item.cc21 base::FilePath directory = path.DirName(); local
24 if (directory == path || directory.value() ==
28 *dir = directory.value();
/external/chromium_org/content/shell/browser/
H A Dshell_layout_tests_android.cc28 ScopedJavaLocalRef<jstring> directory = local
31 return base::FilePath(ConvertJavaStringToUTF8(directory));
/external/chromium_org/sandbox/win/tools/finder/
H A Dfinder_fs.cc9 DWORD Finder::ParseFileSystem(ATL::CString directory) { argument
13 //Search for items in the directory.
14 ATL::CString name_to_search = directory + L"\\*";
18 Output(FS_ERR, error, directory);
29 ATL::CString complete_name = directory + L"\\" + find_data.cFileName;
32 // Call recursively the function if the path found is a directory.
42 Output(FS_ERR, err_code, directory);
/external/chromium_org/sync/test/engine/
H A Dtest_directory_setter_upper.h22 // Then, in your tests, get at the directory like so:
25 // ... now use metadb_.directory() to get at syncable::Entry objects ...
63 // Undo everything done by SetUp(): close the directory and delete the
64 // backing files. Before closing the directory, this will run the directory
65 // invariant checks and perform the SaveChanges action on the directory.
68 syncable::Directory* directory() { return directory_.get(); } function in class:syncer::TestDirectorySetterUpper
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFileChooserParams.h43 // If |directory| is true, the dialog allows the user to select a directory.
44 bool directory; member in struct:blink::WebFileChooserParams
77 , directory(false)
/external/chromium_org/third_party/boringssl/src/crypto/
H A Ddirectory_posix.c31 #include "directory.h"
59 const char *OPENSSL_DIR_read(OPENSSL_DIR_CTX **ctx, const char *directory) { argument
62 if (ctx == NULL || directory == NULL) {
76 (*ctx)->dir = opendir(directory);
H A Ddirectory_win.c28 #include "directory.h"
47 const char *OPENSSL_DIR_read(OPENSSL_DIR_CTX **ctx, const char *directory) { argument
48 if (ctx == NULL || directory == NULL) {
65 size_t index = 0, len_0 = strlen(directory) + 1;
75 if (!MultiByteToWideChar(CP_ACP, 0, directory, len_0, (WCHAR *)wdir,
78 wdir[index] = (TCHAR)directory[index];
86 (*ctx)->handle = FindFirstFile((TCHAR *)directory, &(*ctx)->ctx);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DVersionNumberStripper.java18 * A class that strips version numbers off built plugin directory names. This
25 //the directory containing the directories and files from which to remove version information
26 private String directory; field in class:VersionNumberStripper
32 public void setDirectory(String dir){directory=dir;}
34 public String getDirectory(){return directory;}
37 setDirectory(directory);
51 File file=new File(directory);
/external/javassist/src/main/javassist/
H A DURLClassPath.java31 protected String directory; field in class:URLClassPath
47 * <code>port</code> is 80, and <code>directory</code> is "/java/classes/".
54 * @param directory directory name ending with "/".
55 * It can be "/" (root directory).
60 String directory, String packageName) {
63 this.directory = directory;
68 return hostname + ":" + port + directory;
89 = directory
59 URLClassPath(String host, int port, String directory, String packageName) argument
129 fetchClass(String host, int port, String directory, String classname) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/file_system/
H A Dentry_watcher_service.h48 // Watches a directory. Only one watcher can be set per the same |url| and
55 // Unwatches an entry (file or directory).
82 bool directory,
87 bool directory; member in struct:extensions::EntryWatcherService::EntryWatcher
97 // Called when adding a directory watcher is completed with either a success
/external/chromium_org/chrome/browser/ui/ash/
H A Dscreenshot_taker_unittest.cc63 // allowed to set the directory, basename and profile.
113 base::ScopedTempDir directory; local
114 ASSERT_TRUE(directory.CreateUniqueTempDir());
115 SetScreenshotDirectoryForTest(&screenshot_taker, directory.path());
/external/chromium_org/chrome/utility/
H A Dshell_handler_win.cc47 base::FilePath directory; local
51 open_file_name.GetResult(&directory, &filenames);
55 new ChromeUtilityHostMsg_GetOpenFileName_Result(directory, filenames));
/external/chromium_org/storage/browser/fileapi/
H A Dsandbox_isolated_origin_database.cc13 // Special directory name for isolated origin.
37 const std::string& origin, base::FilePath* directory) {
40 *directory = origin_directory_;
36 GetPathForOrigin( const std::string& origin, base::FilePath* directory) argument

Completed in 840 milliseconds

123456789