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

1 2 3 4

  /external/dbus/bus/
dir-watch.h 36 * @param dirs List of strings which are directory paths
38 void bus_set_watched_dirs (BusContext *context, DBusList **dirs);
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];
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];
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...]
  /external/clang/test/CodeGenCXX/
2004-11-27-ExceptionCleanupAssertion.cpp 13 Strongbad dirs[] = { Strongbad(0) + 1}; local
  /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 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/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/cmds/installd/
installd.c 259 if (android_system_dirs.dirs[i].path != NULL) {
260 free(android_system_dirs.dirs[i].path);
264 free(android_system_dirs.dirs);
291 android_system_dirs.dirs = calloc(android_system_dirs.count, sizeof(dir_rec_t));
292 if (android_system_dirs.dirs == NULL) {
293 LOGE("Couldn't allocate array for dirs; aborting\n");
298 if (get_path_from_env(&android_system_dirs.dirs[0], "ANDROID_ROOT") < 0) {
303 // append "app/" to dirs[0]
304 char *system_app_path = build_string2(android_system_dirs.dirs[0].path, APP_SUBDIR);
305 android_system_dirs.dirs[0].path = system_app_path
    [all...]
  /system/extras/ext4_utils/
contents.h 35 u32 dirs);
  /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/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)
  /frameworks/compile/libbcc/runtime/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)
  /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) {
  /frameworks/base/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);
  /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);
  /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) {
  /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/webrtc/src/modules/audio_processing/main/test/process_test/
apmtest.m 180 dirs = dir(inpath);
183 for i=3:length(dirs) % skip . and ..
184 nDirs = nDirs + dirs(i).isdir;
308 for i=3:length(dirs)
309 if dirs(i).isdir
310 [nErr, nCases] = recurseDir([inpath dirs(i).name '/'], outpath, ...
311 refpath,[outfile '_' dirs(i).name], progname, opt, ...
  /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...]
  /external/clang/include/clang/Lex/
HeaderSearch.h 190 void SetSearchPaths(const std::vector<DirectoryLookup> &dirs,
193 assert(angledDirIdx <= systemDirIdx && systemDirIdx <= dirs.size() &&
195 SearchDirs = dirs;
  /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) {
  /external/dbus/dbus/
dbus-sysdeps.c 254 * @param dirs string with pathes
255 * @param suffix string concated to each path in dirs
260 _dbus_split_paths_and_append (DBusString *dirs,
275 len = _dbus_string_get_length (dirs);
277 while (_dbus_string_find (dirs, start, _DBUS_PATH_SEPARATOR, &i))
284 if (!_dbus_string_copy_len (dirs,
332 if (!_dbus_string_copy_len (dirs,

Completed in 509 milliseconds

1 2 3 4