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

1 2 3 4 5 6 7 8 91011>>

  /external/lldb/source/Host/
Android.mk 5 dirs := common macro
8 dirs += macosx
12 dirs += linux
16 dirs += freebsd
19 subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, $(dirs)))
  /external/clang/test/CodeGenCXX/
2004-11-27-ExceptionCleanupAssertion.cpp 13 Strongbad dirs[] = { Strongbad(0) + 1}; local
  /external/ltrace/sysdeps/linux-gnu/
hooks.c 48 add_dir(struct vect *dirs, const char *str1, const char *str2)
52 && VECT_PUSHBACK(dirs, &dir) < 0)
61 struct vect *dirs = data; local
63 add_dir(dirs, entry->pathname, "/ltrace");
82 static struct vect dirs; local
92 *retp = VECT_ELEMENT(&dirs, const char *, 0);
94 *retp = VECT_ELEMENT(&dirs, const char *,
101 VECT_INIT(&dirs, char *);
132 add_dir(&dirs, xdg_home, "/ltrace");
134 add_dir(&dirs, home, "/.ltrace")
    [all...]
  /external/e2fsprogs/lib/ss/
help.c 132 register char **dirs; local
144 dirs = info->info_dirs;
145 for (n_dirs = 0; dirs[n_dirs] != (char *)NULL; n_dirs++)
147 dirs = (char **)realloc((char *)dirs,
149 if (dirs == (char **)NULL) {
154 info->info_dirs = dirs;
155 dirs[n_dirs + 1] = (char *)NULL;
156 dirs[n_dirs] = malloc((unsigned)strlen(info_dir)+1);
157 strcpy(dirs[n_dirs], info_dir)
    [all...]
  /external/lldb/source/Plugins/
Android.mk 5 dirs := \ macro
31 dirs += \
42 dirs += \
51 dirs += \
58 subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, $(dirs)))
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DebuggingClassWriter.java 78 String dirs = className.replace('.', File.separatorChar); local
80 new File(debugLocation + File.separatorChar + dirs).getParentFile().mkdirs();
82 File file = new File(new File(debugLocation), dirs + ".class");
91 file = new File(new File(debugLocation), dirs + ".asm");
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
by_dir.c 84 STACK_OF(BY_DIR_ENTRY) *dirs;
159 a->dirs=NULL;
193 if (a->dirs != NULL)
194 sk_BY_DIR_ENTRY_pop_free(a->dirs, by_dir_entry_free);
222 for (j=0; j < sk_BY_DIR_ENTRY_num(ctx->dirs); j++)
224 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
229 if (j < sk_BY_DIR_ENTRY_num(ctx->dirs))
231 if (ctx->dirs == NULL)
233 ctx->dirs = sk_BY_DIR_ENTRY_new_null();
234 if (!ctx->dirs)
    [all...]
  /external/openssl/crypto/x509/
by_dir.c 92 STACK_OF(BY_DIR_ENTRY) *dirs;
167 a->dirs=NULL;
201 if (a->dirs != NULL)
202 sk_BY_DIR_ENTRY_pop_free(a->dirs, by_dir_entry_free);
230 for (j=0; j < sk_BY_DIR_ENTRY_num(ctx->dirs); j++)
232 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
237 if (j < sk_BY_DIR_ENTRY_num(ctx->dirs))
239 if (ctx->dirs == NULL)
241 ctx->dirs = sk_BY_DIR_ENTRY_new_null();
242 if (!ctx->dirs)
    [all...]
  /bootable/recovery/applypatch/
freecache.c 85 const char* dirs[2] = {"/cache", "/cache/recovery/otatest"}; local
88 for (i = 0; i < sizeof(dirs)/sizeof(dirs[0]); ++i) {
89 d = opendir(dirs[i]);
91 printf("error opening %s: %s\n", dirs[i], strerror(errno));
97 strcpy(path, dirs[i]);
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
AntJarProcessor.java 34 private Set<String> dirs = new HashSet<String>(); field in class:AntJarProcessor
85 if (dirs.add(dir)) {
105 dirs.clear();
  /build/tools/atree/
fs.cpp 55 vector<string> dirs; local
75 dirs.push_back(full);
89 for (vector<string>::iterator it=dirs.begin(); it!=dirs.end(); it++) {
  /external/openssl/crypto/engine/
eng_dyn.c 145 /* Whether to never use 'dirs', use 'dirs' as a fallback, or only use
146 * 'dirs' for loading. Default is to use 'dirs' as a fallback. */
149 STACK_OF(OPENSSL_STRING) *dirs;
176 if(ctx->dirs)
177 sk_OPENSSL_STRING_pop_free(ctx->dirs, int_free_str);
206 c->dirs = sk_OPENSSL_STRING_new_null();
207 if(!c->dirs)
396 sk_OPENSSL_STRING_insert(ctx->dirs, tmp_str, -1)
    [all...]
  /external/compiler-rt/make/
lib_util.mk 46 # Helper function to select the right set of dirs in generic priority order.
53 # Helper function to select the right set of dirs in optimized priority order.
60 # Helper function to select the right set of dirs (which should be exactly one)
  /external/chromium_org/content/common/
plugin_list_win.cc 306 std::set<base::FilePath> dirs;
309 GetAppDirectory(&dirs);
312 GetExeDirectory(&dirs);
315 GetJavaDirectory(&dirs);
319 GetFirefoxDirectory(&dirs);
323 GetAcrobatDirectory(&dirs);
324 GetQuicktimeDirectory(&dirs);
325 GetWindowsMediaDirectory(&dirs);
327 for (std::set<base::FilePath>::iterator i = dirs.begin(); i != dirs.end(); ++i
    [all...]
  /development/tools/idegen/src/com/android/idegen/
DirectorySearch.java 151 ImmutableList<File> dirs = findSourceDirs(child); local
152 if (dirs.isEmpty()) {
157 builder.addAll(dirs);
  /development/tools/elftree/
elftree.c 95 } *dirs = NULL; variable in typeref:struct:search_dir
102 dir->next = dirs;
103 dirs = dir;
156 for (dir = dirs; dir; dir = dir->next) {
  /external/apache-harmony/
Android.mk 30 define harmony-test-resource-dirs
34 harmony_test_resource_dirs := $(call harmony-test-resource-dirs,$(harmony_test_dirs))
  /external/chromium_org/third_party/webrtc/modules/audio_processing/test/
apmtest.m 179 dirs = dir(inpath);
182 for i=3:length(dirs) % skip . and ..
183 nDirs = nDirs + dirs(i).isdir;
303 for i=3:length(dirs)
304 if dirs(i).isdir
305 [nErr, nCases] = recurseDir([inpath dirs(i).name '/'], outpath, ...
306 refpath,[outfile '_' dirs(i).name], progname, opt, ...
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-line.c 186 if (strncmp(dbgfmt_dwarf2->dirs[dir-1], pathname, dirlen) == 0
187 && dbgfmt_dwarf2->dirs[dir-1][dirlen] == '\0')
194 dbgfmt_dwarf2->dirs = yasm_xrealloc(dbgfmt_dwarf2->dirs,
197 dbgfmt_dwarf2->dirs[dir-1] = yasm__xstrndup(pathname, dirlen);
489 char **dirs,
499 if (strncmp(dirs[fn->dir-1], pathname, dirlen) != 0 ||
500 dirs[fn->dir-1][dirlen] != '\0')
539 dbgfmt_dwarf2->dirs, pathname, dirlen,
545 dbgfmt_dwarf2->dirs, pathname, dirlen
    [all...]
dwarf2-dbgfmt.c 88 dbgfmt_dwarf2->dirs =
123 if (dbgfmt_dwarf2->dirs[i])
124 yasm_xfree(dbgfmt_dwarf2->dirs[i]);
125 yasm_xfree(dbgfmt_dwarf2->dirs);
dwarf2-dbgfmt.h 43 char **dirs; member in struct:yasm_dbgfmt_dwarf2
  /external/chromium_org/chrome/browser/extensions/
extension_garbage_collector_unittest.cc 79 base::FileEnumerator dirs(extensions_install_dir(),
83 while (!dirs.Next().empty())
  /development/tools/rmtypedefs/src/com/android/tools/rmtypedefs/
RmTypeDefs.java 71 List<File> dirs = new ArrayList<File>(); local
91 dirs.add(file);
105 for (File dir : dirs) {
  /bootable/recovery/
recovery.cpp 596 char** dirs = (char**)malloc(d_alloc * sizeof(char*)); local
613 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
615 dirs[d_size] = (char*)malloc(name_len + 2);
616 strcpy(dirs[d_size], de->d_name);
617 dirs[d_size][name_len] = '/';
618 dirs[d_size][name_len+1] = '\0';
632 qsort(dirs, d_size, sizeof(char*), compare_string);
635 // append dirs to the zips list
640 memcpy(zips + z_size, dirs, d_size * sizeof(char*))
    [all...]
  /external/ltrace/
prototype.c 386 const char **dirs = NULL; local
387 if (os_get_config_dirs(private, &dirs) < 0
388 || dirs == NULL)
391 for (; *dirs != NULL; ++dirs) {
392 struct protolib *plib = consider_config_dir(cache, *dirs, key);

Completed in 1218 milliseconds

1 2 3 4 5 6 7 8 91011>>