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

1 2

  /external/clang/test/CodeGenCXX/
2004-11-27-ExceptionCleanupAssertion.cpp 13 Strongbad dirs[] = { Strongbad(0) + 1}; local
  /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]);
  /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++) {
files.cpp 438 vector<string> dirs; local
460 dirs.push_back(entry);
465 for (vector<string>::iterator it=dirs.begin(); it!=dirs.end(); it++) {
  /external/e2fsprogs/lib/ss/
help.c 138 register char **dirs; local
150 dirs = info->info_dirs;
151 for (n_dirs = 0; dirs[n_dirs] != (char *)NULL; n_dirs++)
153 dirs = (char **)realloc((char *)dirs,
155 if (dirs == (char **)NULL) {
160 info->info_dirs = dirs;
161 dirs[n_dirs + 1] = (char *)NULL;
162 dirs[n_dirs] = malloc((unsigned)strlen(info_dir)+1);
163 strcpy(dirs[n_dirs], info_dir)
    [all...]
  /external/webkit/Tools/CodeCoverage/
run-generate-coverage-data 48 for root, dirs, files in os.walk(src):
88 dirs and needs to do substituting.
150 for root, dirs, files in os.walk(base_path):
189 def analyze_coverage(sources,data,dirs,runid,base):
193 dirs Where to take a look for gcov files
198 gcov = collect_cov(base,dirs)
221 dirs = {} variable
224 if not dir in dirs:
225 dirs[dir] = {}
227 if not dep in dirs[dir]
    [all...]
  /frameworks/base/cmds/installd/
installd.h 84 dir_rec_t* dirs; member in struct:__anon14472
  /external/apache-harmony/
Android.mk 39 define harmony-test-resource-dirs
43 $(call harmony-test-resource-dirs,$(harmony_test_dirs)) \
44 $(call harmony-test-resource-dirs,luni)
  /external/dbus/bus/
dir-watch-inotify.c 46 static char *dirs[MAX_DIRS_TO_WATCH]; variable
125 if (dirs[j] && strcmp (new_dirs[i], dirs[j]) == 0)
128 new_dirs[i] = dirs[j];
130 dirs[j] = NULL;
144 dbus_free (dirs[j]);
146 dirs[j] = NULL;
190 dirs[i] = new_dirs[i];
dir-watch-kqueue.c 47 static char *dirs[MAX_DIRS_TO_WATCH]; variable
174 if (dirs[j] && strcmp (new_dirs[i], dirs[j]) == 0)
177 new_dirs[i] = dirs[j];
179 dirs[j] = NULL;
193 dbus_free (dirs[j]);
195 dirs[j] = NULL;
250 dirs[i] = new_dirs[i];
config-parser-trivial.c 174 DBusList *dirs; local
175 dirs = NULL;
177 if (!_dbus_get_standard_system_servicedirs (&dirs))
183 while ((link = _dbus_list_pop_first_link (&dirs)))
250 /* append the dynamic char string to service dirs */
352 DBusList **dirs; local
400 /* check dirs return value is okay */
401 dirs = bus_config_parser_get_service_dirs (parser);
402 if (dirs == NULL)
404 _dbus_warn ("Service dirs are NULL!\n")
    [all...]
bus.c 499 DBusList **dirs; local
570 dirs = bus_config_parser_get_service_dirs (parser);
590 if (!bus_activation_reload (context->activation, &full_address, dirs, error))
595 context->activation = bus_activation_new (context, &full_address, dirs, error);
    [all...]
  /libcore/
NativeCode.mk 27 define all-core-native-dirs
58 core_native_dirs := $(strip $(call all-core-native-dirs,main))
JavaLibrary.mk 48 define all-core-resource-dirs
54 core_resource_dirs := $(call all-core-resource-dirs,main)
55 test_resource_dirs := $(call all-core-resource-dirs,test)
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DeviceDetailFragment.java 235 File dirs = new File(f.getParent()); local
236 if (!dirs.exists())
237 dirs.mkdirs();
  /external/doclava/src/com/google/doclava/
SampleCode.java 72 TreeSet<String> dirs = new TreeSet<String>(); local
100 dirs.add(name);
110 for (String d : dirs) {
  /system/extras/ext4_utils/
make_ext4fs.c 83 u32 dirs = 0; local
135 dirs++;
156 inode = make_directory(dir_inode, entries, dentries, 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/bluetooth/glib/gio/tests/
g-file.c 400 const struct TestPathsWithOper dirs[] = local
426 for (i = 0; i < G_N_ELEMENTS (dirs); i++)
428 char *s = get_relative_path (dirs[i].use_uri, dirs[i].equal, dirs[i].path1, dirs[i].path2);
429 if (dirs[i].equal)
430 g_assert_cmpstr (s, ==, dirs[i].path3);
  /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...]
  /packages/apps/Phone/src/com/android/phone/sip/
SipProfileDb.java 110 String[] dirs = root.list(); local
111 if (dirs == null) return sipProfileList;
112 for (String dir : dirs) {
  /bootable/recovery/
recovery.c 502 char** dirs = malloc(d_alloc * sizeof(char*)); local
519 dirs = realloc(dirs, d_alloc * sizeof(char*));
521 dirs[d_size] = malloc(name_len + 2);
522 strcpy(dirs[d_size], de->d_name);
523 dirs[d_size][name_len] = '/';
524 dirs[d_size][name_len+1] = '\0';
538 qsort(dirs, d_size, sizeof(char*), compare_string);
541 // append dirs to the zips list
546 memcpy(zips + z_size, dirs, d_size * sizeof(char*))
    [all...]
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 174 // Add the multilib dirs
440 // just prior C include dirs.
454 // Add dirs specified via 'configure --with-c-include-dirs'.
457 SmallVector<StringRef, 5> dirs; local
458 CIncludeDirs.split(dirs, ":");
459 for (SmallVectorImpl<StringRef>::iterator i = dirs.begin();
460 i != dirs.end();
    [all...]
  /frameworks/base/core/java/android/text/
DynamicLayout.java 151 Directions[] dirs = new Directions[] { DIRS_ALL_LEFT_TO_RIGHT }; local
165 mObjects.insertAt(0, dirs);
  /ndk/sources/host-tools/make-3.81/glob/
glob.c 857 glob_t dirs;
863 errfunc, &dirs);
870 for (i = 0; i < dirs.gl_pathc; ++i)
881 globfree (&dirs);
889 status = glob_in_dir (filename, dirs.gl_pathv[i],
899 globfree (&dirs);
905 if (prefix_array (dirs.gl_pathv[i],
909 globfree (&dirs);
936 dirs.gl_pathc + 1) *
940 globfree (&dirs);
856 glob_t dirs; local
    [all...]

Completed in 1304 milliseconds

1 2