Searched refs:dirs (Results 1 - 25 of 29) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/util/
H A Dmkfiles.pl9 my @dirs = (
68 foreach (@dirs) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/util/
H A Dmkfiles.pl9 my @dirs = (
66 foreach (@dirs) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509/
H A Dby_dir.c81 char **dirs; member in struct:lookup_dir_st
156 a->dirs=NULL;
170 if (a->dirs[i] != NULL) OPENSSL_free(a->dirs[i]);
171 if (a->dirs != NULL) OPENSSL_free(a->dirs);
201 if (strlen(ctx->dirs[j]) == (size_t)len &&
202 strncmp(ctx->dirs[j],ss,(unsigned int)len) == 0)
218 memcpy(pp,ctx->dirs,(ctx->num_dirs_alloced-10)*
222 if (ctx->dirs !
[all...]
H A Dx509_vfy.h84 char **dirs; member in struct:x509_hash_dir_st
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/x509/
H A Dby_dir.c81 char **dirs; member in struct:lookup_dir_st
157 a->dirs=NULL;
171 if (a->dirs[i] != NULL) OPENSSL_free(a->dirs[i]);
172 if (a->dirs != NULL) OPENSSL_free(a->dirs);
202 if (strncmp(ctx->dirs[j],ss,(unsigned int)len) == 0)
216 memcpy(pp,ctx->dirs,(ctx->num_dirs_alloced-10)*
220 if (ctx->dirs != NULL)
221 OPENSSL_free(ctx->dirs);
[all...]
H A Dx509_vfy.h83 char **dirs; member in struct:x509_hash_dir_st
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drep039.tcl162 file mkdir [set dirs(A) $testdir/SITE_A]
163 file mkdir [set dirs(B) $testdir/SITE_B]
164 file mkdir [set dirs(C) $testdir/SITE_C]
181 -home $dirs(A) -rep_transport \[list 1 replsend\]"
194 -home $dirs(B) -rep_transport \[list 2 replsend\]"
201 -home $dirs(C) -rep_transport \[list 3 replsend\]"
233 set res [eval exec $util_path/db_archive -l -h $dirs($test_client)]
247 set res [eval exec $util_path/db_archive -d -h $dirs($master)]
248 set res [eval exec $util_path/db_archive -l -h $dirs($master)]
259 set res [eval exec $util_path/db_archive -l -h $dirs(
[all...]
H A Dparallel.tcl115 set dirs [glob -nocomplain ./PARALLEL_TESTDIR.*]
120 foreach dir $dirs {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/modules/
H A Dvfs_shadow_copy.c62 SMB_STRUCT_DIRENT *dirs; member in struct:__anon1689
111 r = SMB_REALLOC_ARRAY(dirp->dirs,SMB_STRUCT_DIRENT, dirp->num+1);
117 dirp->dirs = r;
118 dirp->dirs[dirp->num++] = *d;
130 return &(dirp->dirs[dirp->pos++]);
140 SAFE_FREE(dirp->dirs);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/engine/
H A Deng_dyn.c145 /* 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 *dirs; member in struct:st_dynamic_data_ctx
176 if(ctx->dirs)
177 sk_pop_free(ctx->dirs, int_free_str);
206 c->dirs = sk_new_null();
207 if(!c->dirs)
396 sk_insert(ctx->dirs, tmp_st
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Dutil.pm104 use vars qw( $basename %dirs ) ;
123 $dirs{$dir} ++ ;
128 foreach (keys %dirs) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/
H A Dmem.c33 char *dirs[] = { "TMP", "TEMP", "TMPDIR", NULL }; local
39 for(i = 0; dirs[i]; i++){
40 dir = getenv(dirs[i]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/squashfs/
H A Dunsquashfs.c903 struct dir_ent *dirs; member in struct:dir
978 dir->dirs = NULL;
1005 if((new_dir = realloc(dir->dirs, (dir->dir_count + DIR_ENT_SIZE) * sizeof(struct dir_ent))) == NULL) {
1007 free(dir->dirs);
1011 dir->dirs = new_dir;
1013 strcpy(dir->dirs[dir->dir_count].name, dire->name);
1014 dir->dirs[dir->dir_count].start_block = dirh.start_block;
1015 dir->dirs[dir->dir_count].offset = dire->offset;
1016 dir->dirs[dir->dir_count].type = dire->type;
1097 dir->dirs
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dftp.h128 char **dirs; /* realloc()ed array for path components */ member in struct:ftp_conn
129 int dirdepth; /* number of entries used in the 'dirs' array */
130 int diralloc; /* number of entries allocated for the 'dirs' array */
H A Dftp.c281 if(ftpc->dirs) {
283 if(ftpc->dirs[i]) {
284 free(ftpc->dirs[i]);
285 ftpc->dirs[i]=NULL;
288 free(ftpc->dirs);
289 ftpc->dirs = NULL;
700 for all upcoming ones in the ftp->dirs[] array */
709 PPSENDF(&conn->proto.ftpc.pp, "CWD %s", ftpc->dirs[ftpc->count1 -1]);
2790 PPSENDF(&ftpc->pp, "MKD %s", ftpc->dirs[ftpc->count1 - 1]);
2806 PPSENDF(&ftpc->pp, "CWD %s", ftpc->dirs[ftp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dcheck-relaxng-test-suite.py250 dirs = node.xpathEval('dir')
251 for dir in dirs:
273 dirs = node.xpathEval('dir')
274 for dir in dirs:
H A Dcheck-relaxng-test-suite2.py264 dirs = node.xpathEval('dir')
265 for dir in dirs:
287 dirs = node.xpathEval('dir')
288 for dir in dirs:
H A Dcheck-xsddata-test-suite.py262 dirs = node.xpathEval('dir')
263 for dir in dirs:
285 dirs = node.xpathEval('dir')
286 for dir in dirs:
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Dkwset.c134 enum { L, R } dirs[12]; local
152 dirs[0] = L;
159 dirs[depth++] = L, link = link->llink;
161 dirs[depth++] = R, link = link->rlink;
190 if (dirs[--depth] == L)
198 if (dirs[depth] == L)
206 if (depth && ((dirs[depth] == L && --links[depth]->balance)
207 || (dirs[depth] == R && ++links[depth]->balance)))
212 switch (dirs[depth + 1])
232 switch (dirs[dept
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/xstc/
H A Dxstc.py128 dirs = fileName.split("/")
129 if dirs[1] != "Tests":
131 for dir in dirs[1:]:
200 dirs = self.fileName.split("/")
201 self.combineName = dirs[len(dirs) -2]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/coreutils/
H A Dls.c237 int i, dirs; local
241 dirs = 0;
250 dirs++;
253 return dirs;
307 /* count how many dirs and regular files there are */
311 dncnt = countdirs(dn, nfiles); /* assume we are looking for dirs */
466 /* recursive- list the sub-dirs */
472 /* free the array of dnode pointers to the dirs */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/include/openssl/
H A Dx509_vfy.h83 char **dirs; member in struct:x509_hash_dir_st
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DEnvironmentConfig.java458 final java.io.File[] dirs = new java.io.File[dataDirs.size()];
459 dataDirs.copyInto(dirs);
460 return dirs;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dx509_vfy.h84 char **dirs; member in struct:x509_hash_dir_st
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/
H A Dftpserver.pl790 my @dirs = split("/", $target_dir);
791 for(@dirs) {

Completed in 174 milliseconds

12