HomeSort by relevance Sort by last modified time
    Searched refs:directory (Results 1 - 25 of 390) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/bus/
dir-watch.h 29 /* setup a watch on a directory (OS dependent, may be a NOP) */
30 void bus_watch_directory (const char *directory, BusContext *context);
  /external/proguard/src/proguard/io/
DirectoryPump.java 27 * 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)
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));
FileDataEntry.java 34 private final File directory; field in class:FileDataEntry
39 public FileDataEntry(File directory,
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())
  /system/extras/ext4_utils/
make_ext4fs.h 24 int make_ext4fs(const char *filename, const char *directory,
  /external/openssl/crypto/
LPdir_nyi.c 33 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
o_dir.h 43 /* returns NULL on error or end-of-directory.
44 If it is end-of-directory, errno will be zero */
45 const char *OPENSSL_DIR_read(OPENSSL_DIR_CTX **ctx, const char *directory);
LPdir_win.c 55 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
57 if (ctx == NULL || directory == NULL)
78 size_t index = 0,len_0 = strlen(directory) + 1;
90 if (!MultiByteToWideChar(CP_ACP, 0, directory, len_0, (WCHAR *)wdir, len_0))
93 wdir[index] = (TCHAR)directory[index];
100 (*ctx)->handle = FindFirstFile((TCHAR *)directory, &(*ctx)->ctx);
  /external/grub/util/
grub-set-default 36 --root-directory=DIR Use the directory DIR instead of the root directory
53 --root-directory=*)
54 rootdir=`echo "$option" | sed 's/--root-directory=//'` ;;
77 # Determine the GRUB directory. This is different among OSes.
86 echo "No GRUB directory found under ${rootdir}/" 1>&2
grub-set-default.in 36 --root-directory=DIR Use the directory DIR instead of the root directory
53 --root-directory=*)
54 rootdir=`echo "$option" | sed 's/--root-directory=//'` ;;
77 # Determine the GRUB directory. This is different among OSes.
86 echo "No GRUB directory found under ${rootdir}/" 1>&2
  /external/webkit/WebKit/mac/Misc/
WebDownloadInternal.h 40 directory:(NSString *)directory;
  /libcore/luni/src/main/java/java/lang/
ProcessBuilder.java 35 private File directory; field in class:ProcessBuilder
116 * Returns the working directory of this process builder. If {@code null} is
117 * returned, then the working directory of the Java process is used when a
120 * @return the current working directory, may be {@code null}.
122 public File directory() { method in class:ProcessBuilder
123 return directory;
127 * Changes the working directory of this process builder. If the specified
128 * directory is {@code null}, then the working directory of the Java
131 * @param directory
135 public ProcessBuilder directory(File directory) { method in class:ProcessBuilder
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
DirectoryWalker.java 29 * Abstract class that walks through a directory hierarchy and provides
65 * protected boolean handleDirectory(File directory, int depth, Collection results) {
67 * if (".svn".equals(directory.getName())) {
68 * directory.delete();
119 * // Combine the directory and file filters using an OR condition
226 * protected boolean handleDirectory(File directory, int depth, Collection results) throws IOException {
227 * // cancel if hidden directory
228 * if (directory.isHidden()) {
258 * The limit on the directory depth to walk.
287 * Construct an instance with a directory and a file filter and an optional
    [all...]
  /external/bluetooth/glib/gmodule/
gmodule-dl.c 156 _g_module_build_path (const gchar *directory,
159 if (directory && *directory) {
161 return g_strconcat (directory, "/", module_name, NULL);
163 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
gmodule-dld.c 151 _g_module_build_path (const gchar *directory,
154 if (directory && *directory)
156 return g_strconcat (directory, "/", module_name, NULL);
158 return g_strconcat (directory, "/lib", module_name, ".sl", NULL);
gmodule-os2.c 131 _g_module_build_path (const gchar *directory,
135 if (directory && *directory)
137 return g_strconcat (directory, "/", module_name, NULL);
139 return g_strconcat (directory, "/", module_name, ".dll", NULL);
gmodule-dyld.c 58 msg = g_strdup_printf ("%s: no such file or directory", file_name);
140 _g_module_build_path (const gchar *directory,
143 if (directory && *directory)
146 return g_strconcat (directory, "/", module_name, NULL);
148 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
  /external/webkit/WebKitTools/Scripts/
check-dom-results 44 my @suites = ( {"name" => "DOM Level 1 Core (html)", "directory" => "dom/html/level1/core"},
45 {"name" => "DOM Level 2 Core (html)", "directory" => "dom/html/level2/core"},
46 {"name" => "DOM Level 2 Events (html)", "directory" => "dom/html/level2/events"},
47 {"name" => "DOM Level 2 HTML (html)", "directory" => "dom/html/level2/html"},
48 {"name" => "DOM Level 1 Core (xhtml)", "directory" => "dom/xhtml/level1/core"},
49 {"name" => "DOM Level 2 Core (xhtml)", "directory" => "dom/xhtml/level2/core"},
50 {"name" => "DOM Level 2 Events (xhtml)", "directory" => "dom/xhtml/level2/events"},
51 {"name" => "DOM Level 2 HTML (xhtml)", "directory" => "dom/xhtml/level2/html"},
52 {"name" => "DOM Level 3 Core (xhtml)", "directory" => "dom/xhtml/level3/core"},
53 {"name" => "DOM Level 3 XPath (svg)", "directory" => "dom/svg/level3/xpath"})
    [all...]
webkit-build-directory 29 # A script to expose WebKit's build directory detection logic to non-perl scripts.
43 --base Show the root build directory instead of one corresponding to the current target (e.g. Debug, Release)
44 --debug Show build directory for the Debug target
46 --release Show build directory for the Release target
  /build/tools/kcm/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /development/tools/line_endings/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /external/webkit/WebKitTools/pywebsocket/test/
run_all.py 33 """Run all tests in the same directory.
45 def _list_test_modules(directory):
47 for filename in os.listdir(directory):
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCache.java 37 * underlying directory at a time.
63 /** Directory to store session files in. */
64 final File directory; field in class:FileClientSessionCache.Impl
81 * Constructs a new cache backed by the given directory.
83 Impl(File directory) throws IOException {
84 boolean exists = directory.exists();
85 if (exists && !directory.isDirectory()) {
86 throw new IOException(directory
87 + " exists but is not a directory.");
97 initialFiles = directory.list()
    [all...]
  /external/bluetooth/glib/gio/fam/
fam-helper.h 33 gboolean directory,
  /packages/apps/Email/src/org/apache/commons/io/output/
DeferredFileOutputStream.java 82 * The directory to use for temporary files.
84 private File directory; field in class:DeferredFileOutputStream
119 * @param directory Temporary file directory.
123 public DeferredFileOutputStream(int threshold, String prefix, String suffix, File directory)
131 this.directory = directory;
163 outputFile = File.createTempFile(prefix, suffix, directory);
  /build/tools/atree/
Android.mk 3 # Copies files into the directory structure described by a manifest

Completed in 1708 milliseconds

1 2 3 4 5 6 7 8 91011>>