HomeSort by relevance Sort by last modified time
    Searched refs:dirs (Results 1 - 25 of 390) 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
  /frameworks/native/opengl/tests/
Android.mk 0 dirs := \
24 dirs += \
39 dirs += \
44 include $(call all-named-subdir-makefiles, $(dirs))
1 dirs := \\ macro
  /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...]
  /frameworks/base/core/tests/coretests/src/android/text/
StaticLayoutDirectionsTest.java 30 private static Directions dirs(int ... dirs) { method in class:StaticLayoutDirectionsTest
31 return new Directions(dirs);
79 dirs(0, 1, 1, LVL1_1),
81 dirs(0, 2, 2, LVL1_1),
82 dirs(0, 1, 2, LVL2_1, 1, LVL1_1),
83 dirs(0, 1, 1, LVL1_1, 2, 1),
84 dirs(0, 1, 3, LVL1_1, 2, LVL2_1, 1, LVL1_1),
85 dirs(0, 1, 4, LVL2_1, 3, LVL1_1, 2, LVL2_1, 1, LVL1_1),
89 dirs(0, LVL1_1, 1, LVL2_1)
    [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)))
  /hardware/qcom/gps/loc_api/
Android.mk 5 # add RPC dirs if RPC is available
  /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]);
  /frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
ObbBackupService.java 130 final ArrayList<File> dirs = new ArrayList<File>();
132 dirs.add(rootDir);
133 while (!dirs.isEmpty()) {
134 File dir = dirs.remove(0);
138 if (f.isDirectory()) dirs.add(f);
  /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();
  /frameworks/native/cmds/installd/
installd.c 297 if (android_system_dirs.dirs[i].path != NULL) {
298 free(android_system_dirs.dirs[i].path);
302 free(android_system_dirs.dirs);
339 android_system_dirs.dirs = calloc(android_system_dirs.count, sizeof(dir_rec_t));
340 if (android_system_dirs.dirs == NULL) {
341 ALOGE("Couldn't allocate array for dirs; aborting\n");
351 android_system_dirs.dirs[0].path = build_string2(android_root_dir.path, APP_SUBDIR);
352 android_system_dirs.dirs[0].len = strlen(android_system_dirs.dirs[0].path);
354 android_system_dirs.dirs[1].path = build_string2(android_root_dir.path, PRIV_APP_SUBDIR)
    [all...]
  /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/qemu/distrib/ext4_utils/src/
contents.h 37 u32 dirs);
  /system/extras/ext4_utils/
contents.h 37 u32 dirs);
  /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...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StorageUtils.java 201 * @param exclude ignore dirs with this name, or {@code null} to ignore.
206 final LinkedList<File> dirs = new LinkedList<File>(); local
207 dirs.add(startDir);
208 while (!dirs.isEmpty()) {
209 final File dir = dirs.removeFirst();
217 dirs.add(child);
  /development/tools/idegen/src/com/android/idegen/
DirectorySearch.java 151 ImmutableList<File> dirs = findSourceDirs(child); local
152 if (dirs.isEmpty()) {
157 builder.addAll(dirs);
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipProfileDb.java 108 String[] dirs = root.list(); local
109 if (dirs == null) return sipProfileList;
110 for (String dir : dirs) {
  /frameworks/native/cmds/installd/tests/
installd_utils_test.cpp 66 android_system_dirs.dirs = (dir_rec_t*) calloc(android_system_dirs.count, sizeof(dir_rec_t));
67 android_system_dirs.dirs[0].path = TEST_SYSTEM_DIR1;
68 android_system_dirs.dirs[0].len = strlen(TEST_SYSTEM_DIR1);
70 android_system_dirs.dirs[1].path = TEST_SYSTEM_DIR2;
71 android_system_dirs.dirs[1].len = strlen(TEST_SYSTEM_DIR2);
75 free(android_system_dirs.dirs);

Completed in 4030 milliseconds

1 2 3 4 5 6 7 8 91011>>