Home
last modified time | relevance | path

Searched refs:directory (Results 1 – 25 of 3529) sorted by relevance

12345678910>>...142

/netbsd-src/external/gpl2/gettext/dist/gettext-tools/src/
H A Ddir-list.c33 static string_list_ty *directory /* = NULL */; variable
40 if (directory == NULL) in dir_list_append()
41 directory = string_list_alloc (); in dir_list_append()
42 string_list_append_unique (directory, s); in dir_list_append()
51 if (directory == NULL) in dir_list_nth()
54 if (n < 0 || n >= directory->nitems) in dir_list_nth()
56 return directory->item[n]; in dir_list_nth()
65 void *saved_value = directory; in dir_list_save_reset()
67 directory = NULL; in dir_list_save_reset()
78 if (directory != NULL) in dir_list_restore()
[all …]
/netbsd-src/external/gpl3/gcc/dist/contrib/
H A Ddownload_prerequisites55 directory='.'
128 --directory)
131 --directory=*)
132 directory="${arg#--directory=}"
174 directory)
175 directory="${arg}"
219 [ -d "${directory}" ] \
220 || die "No such directory: ${directory}"
224 if [ ${force} -gt 0 ]; then rm -f "${directory}/${ar}"; fi
225 [ -e "${directory}/${ar}" ] \
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/contrib/
H A Ddownload_prerequisites64 directory='.'
137 --directory)
140 --directory=*)
141 directory="${arg#--directory=}"
199 directory)
200 directory="${arg}"
215 [ -d "${directory}" ] \
216 || die "No such directory: ${directory}"
220 if [ ${force} -gt 0 ]; then rm -f "${directory}/${ar}"; fi
221 [ -e "${directory}/${ar}" ] \
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/utils/analyzer/
H A DSATestBuild.py197 def run_cleanup_script(directory: str, build_log_file: IO):
201 cwd = os.path.join(directory, PATCHED_SOURCE_DIR_NAME)
202 script_path = os.path.join(directory, CLEANUP_SCRIPT)
362 def build(self, directory: str, output_dir: str) -> Tuple[float, int]:
382 self._download_and_patch(directory, build_log_file)
383 run_cleanup_script(directory, build_log_file)
384 build_time, memory = self.scan_build(directory, output_dir,
387 build_time, memory = self.analyze_preprocessed(directory,
391 run_cleanup_script(directory, build_log_file)
392 normalize_reference_results(directory, output_dir,
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/po/
H A Dxsmallpot.sh11 directory=$2
12 potfile=${3-$directory.pot}
17 rm -rf tmp-$directory
18 cp -p -r "$abs_srcdir"/../$directory tmp-$directory
19 chmod -R u+w tmp-$directory
20 cd tmp-$directory
21 case $directory in
43 s, \\([^ ]\\), $directory/\\1,g
47 rm -rf tmp-$directory
H A Dmmsmallpo.sh7 directory=$1
10 msgmerge --force-po $language.po $directory.pot -o - | \
12 sed -e "s, $directory/, ,g" | sed -e "s,gettext-examples,$directory," | \
24 > ../$directory/po/$language.po
/netbsd-src/external/gpl2/xcvs/dist/src/
H A Droot.c117 if (!ret->isremote && !isdir (ret->directory)) in Name_Root()
198 && !strncmp (root_in, config->PrimaryServer->directory, in primary_root_translate()
199 strlen (config->PrimaryServer->directory)) in primary_root_translate()
200 && (ISSLASH (root_in[strlen (config->PrimaryServer->directory)]) in primary_root_translate()
201 || root_in[strlen (config->PrimaryServer->directory)] == '\0') in primary_root_translate()
206 "%s%s", current_parsed_root->directory, in primary_root_translate()
207 root_in + strlen (config->PrimaryServer->directory)); in primary_root_translate()
244 && !strncmp (root_in, current_parsed_root->directory, in primary_root_inverse_translate()
245 strlen (current_parsed_root->directory)) in primary_root_inverse_translate()
246 && (ISSLASH (root_in[strlen (current_parsed_root->directory)]) in primary_root_inverse_translate()
[all …]
/netbsd-src/external/gpl2/mkhybrid/dist/
H A Dmkisofs.h145 struct directory * filedir;
230 struct directory{ struct
231 struct directory * next; /* Next directory at same level as this one */ argument
232 struct directory * subdir; /* First subdirectory in this directory */ argument
233 struct directory * parent; argument
259 struct directory * filedir; argument
264 extern struct directory * root;
265 extern struct directory * reloc_dir;
332 extern int DECL(sort_tree,(struct directory *));
333 extern struct directory *
[all …]
H A Djoliet.c81 static struct directory ** jpathlist;
87 static void DECL(assign_joliet_directory_addresses, (struct directory * node));
253 static void FDECL1(assign_joliet_directory_addresses, struct directory *, node) in FDECL1() argument
256 struct directory * dpnt; in FDECL1()
287 void FDECL1(build_jpathlist, struct directory *, node) in FDECL1() argument
289 struct directory * dpnt; in FDECL1()
307 struct directory const *ll = *(struct directory * const *)l; in FDECL2()
308 struct directory const *rr = *(struct directory * const *)r; in FDECL2()
345 struct directory * dpnt; in generate_joliet_path_tables()
372 jpathlist = (struct directory **) e_malloc(sizeof(struct directory *) in generate_joliet_path_tables()
[all …]
/netbsd-src/external/gpl2/gmake/dist/tests/scripts/features/
H A Drecursion21 ? "#MAKE#: Entering directory `#PWD#'
29 #MAKE#: Leaving directory `#PWD#'"
30 : "#MAKE#: Entering directory `#PWD#'
32 #MAKE#[1]: Entering directory `#PWD#'
36 #MAKE#[2]: Entering directory `#PWD#'
40 #MAKE#[2]: Leaving directory `#PWD#'
41 #MAKE#[1]: Leaving directory `#PWD#'
42 #MAKE#: Leaving directory `#PWD#'"));
47 recur: all ; @$(MAKE) --no-print-directory -f #MAKEFILE# a=AA all
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/
H A DLPdir_win.c74 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory) in LP_find_file() argument
76 if (ctx == NULL || directory == NULL) { in LP_find_file()
83 size_t dirlen = strlen(directory); in LP_find_file()
108 directory, len_0, in LP_find_file()
114 directory, len_0, in LP_find_file()
124 if (!MultiByteToWideChar(cp, 0, directory, len_0, in LP_find_file()
141 wdir[index] = (TCHAR)directory[index]; in LP_find_file()
154 if (directory[dirlen - 1] != '*') { in LP_find_file()
157 strcpy(buf, directory); in LP_find_file()
163 directory = buf; in LP_find_file()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/
H A DLPdir_win.c74 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory) in LP_find_file() argument
76 if (ctx == NULL || directory == NULL) { in LP_find_file()
83 size_t dirlen = strlen(directory); in LP_find_file()
108 directory, len_0, in LP_find_file()
114 directory, len_0, in LP_find_file()
124 if (!MultiByteToWideChar(cp, 0, directory, len_0, in LP_find_file()
141 wdir[index] = (TCHAR)directory[index]; in LP_find_file()
154 if (directory[dirlen - 1] != '*') { in LP_find_file()
157 strcpy(buf, directory); in LP_find_file()
163 directory = buf; in LP_find_file()
[all …]
/netbsd-src/external/gpl2/xcvs/dist/contrib/
H A Ddirfns.shar1 echo 'directory.3':
2 sed 's/^X//' >'directory.3' <<'!'
6 Xopendir, readdir, telldir, seekdir, rewinddir, closedir \- high-level directory operations
47 XThis library provides high-level primitives for directory scanning,
48 Xsimilar to those available for 4.2BSD's (very different) directory system.
50 X.\"the new flexible length directory names of 4.2bsd UNIX
51 X.\"on top of the old directory structure of v7.
55 X.\"to the new directory access interface,
62 Xopens the directory named by
65 X.I directory stream
[all …]
/netbsd-src/external/gpl2/diffutils/dist/
H A Dexgettext43 directory=.
48 --directory=*)
49 directory=`expr " $i" : ' --directory=\(.*\)'`;;
88 cd $directory &&
114 (cd $directory &&
116 ) > $directory/$tmp || exit
123 rm -f $directory/$tmp
/netbsd-src/external/ibm-public/postfix/dist/src/global/
H A Dsurrogate.ref5 ./mail_dict: error: open /xx: No such file or directory
7 ./mail_dict: warning: ldap:/xx is unavailable. open /xx: No such file or directory
13 ./mail_dict: error: open /xx: No such file or directory
15 ./mail_dict: warning: mysql:/xx is unavailable. open /xx: No such file or directory
21 ./mail_dict: error: open /xx: No such file or directory
23 ./mail_dict: warning: pgsql:/xx is unavailable. open /xx: No such file or directory
29 ./mail_dict: error: open /xx: No such file or directory
31 ./mail_dict: warning: sqlite:/xx is unavailable. open /xx: No such file or directory
33 ./mail_dict: error: open /xx: No such file or directory
35 ./mail_dict: warning: memcache:/xx is unavailable. open /xx: No such file or directory
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
H A Dconcatpath.c36 concatenated_pathname (const char *directory, const char *filename, in concatenated_pathname() argument
42 if (strcmp (directory, ".") == 0) in concatenated_pathname()
52 size_t directory_len = strlen (directory); in concatenated_pathname()
54 (directory_len > FILE_SYSTEM_PREFIX_LEN (directory) in concatenated_pathname()
55 && !ISSLASH (directory[directory_len - 1])); in concatenated_pathname()
60 memcpy (result, directory, directory_len); in concatenated_pathname()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dconcatpath.c36 concatenated_pathname (const char *directory, const char *filename, in concatenated_pathname() argument
42 if (strcmp (directory, ".") == 0) in concatenated_pathname()
52 size_t directory_len = strlen (directory); in concatenated_pathname()
54 (directory_len > FILE_SYSTEM_PREFIX_LEN (directory) in concatenated_pathname()
55 && !ISSLASH (directory[directory_len - 1])); in concatenated_pathname()
60 memcpy (result, directory, directory_len); in concatenated_pathname()
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dsurrogate.ref6 ./dict_open: error: open /xx: No such file or directory
9 ./dict_open: warning: cidr:/xx is unavailable. open /xx: No such file or directory
16 ./dict_open: error: open /xx: No such file or directory
19 ./dict_open: warning: pcre:/xx is unavailable. open /xx: No such file or directory
26 ./dict_open: error: open /xx: No such file or directory
29 ./dict_open: warning: regexp:/xx is unavailable. open /xx: No such file or directory
46 ./dict_open: error: open database /xx: No such file or directory
49 ./dict_open: warning: texthash:/xx is unavailable. open database /xx: No such file or directory
51 ./dict_open: error: open database /xx.db: No such file or directory
54 ./dict_open: warning: hash:/xx is unavailable. open database /xx.db: No such file or directory
/netbsd-src/external/gpl3/binutils.old/dist/zlib/os400/
H A DREADME4003 1) Download and unpack the zlib tarball to some IFS directory.
4 (i.e.: /path/to/the/zlib/ifs/source/directory)
7 else you have to unpack first to some directory on a system supporting it,
8 then move the whole directory to the IFS via the network (via SMB or FTP).
12 EDTF STMF('/path/to/the/zlib/ifs/source/directory/os400/make.sh')
17 3) Enter qshell, then work in the zlib OS/400 specific directory.
20 cd /path/to/the/zlib/ifs/source/directory/os400
30 - create a static and a dynamic binding directory,
40 file zlib.inc located in the same IFS include directory as the
/netbsd-src/external/gpl3/binutils/dist/zlib/os400/
H A DREADME4003 1) Download and unpack the zlib tarball to some IFS directory.
4 (i.e.: /path/to/the/zlib/ifs/source/directory)
7 else you have to unpack first to some directory on a system supporting it,
8 then move the whole directory to the IFS via the network (via SMB or FTP).
12 EDTF STMF('/path/to/the/zlib/ifs/source/directory/os400/make.sh')
17 3) Enter qshell, then work in the zlib OS/400 specific directory.
20 cd /path/to/the/zlib/ifs/source/directory/os400
30 - create a static and a dynamic binding directory,
40 file zlib.inc located in the same IFS include directory as the
/netbsd-src/external/gpl3/gdb/dist/zlib/os400/
H A DREADME4003 1) Download and unpack the zlib tarball to some IFS directory.
4 (i.e.: /path/to/the/zlib/ifs/source/directory)
7 else you have to unpack first to some directory on a system supporting it,
8 then move the whole directory to the IFS via the network (via SMB or FTP).
12 EDTF STMF('/path/to/the/zlib/ifs/source/directory/os400/make.sh')
17 3) Enter qshell, then work in the zlib OS/400 specific directory.
20 cd /path/to/the/zlib/ifs/source/directory/os400
30 - create a static and a dynamic binding directory,
40 file zlib.inc located in the same IFS include directory as the
/netbsd-src/external/gpl2/gmake/dist/tests/scripts/options/
H A Ddash-C7 to delete in the work directory instead of the current directory. Make is
8 called from another directory using the -C workdir option so that it can both
9 find the makefile and the file to delete in the work directory.";
37 $answer = "$make_name: Entering directory `$wpath'\n"
39 . "$make_name: Leaving directory `$wpath'\n";
65 $answer = "$make_name: Entering directory `$wpath'\n"
67 . "$make_name: Leaving directory `$wpath'\n";
/netbsd-src/external/gpl2/gmake/dist/tests/scripts/variables/
H A DMAKE_RESTARTS14 #MAKEFILE#:4: foo.x: No such file or directory
29 #MAKEFILE#:4: foo.x: No such file or directory
31 foo.x:1: bar.x: No such file or directory
50 #MAKEFILE#:8: foo.x: No such file or directory
52 foo.x:1: bar.x: No such file or directory
56 #MAKE#[1]: Entering directory `#PWD#'
58 #MAKE#[1]: Leaving directory `#PWD#'");
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/functional/src/compilation_database/
H A Dbuild_broken.json.in3 "directory": "${path}", string
9 "directory": "${path}", string
15 "directory": "${path}", string
21 "directory": "${path}", string
27 "directory": "${path}", string
33 "directory": "${path}", string
39 "directory": "${path}", string
/netbsd-src/external/bsd/openldap/dist/doc/guide/admin/
H A Dintro.sdf7 {{PRD:OpenLDAP}} Software to provide directory services. This
11 introduction to directory services and, in particular, the directory
14 learning about {{TERM:LDAP}}, {{TERM:X.500}}, and directory services.
17 H2: What is a directory service?
19 A directory is a specialized database specifically designed for
23 Note: A directory is defined by some as merely a database optimized
35 reducing response time. When directory information is replicated,
39 There are many different ways to provide a directory service.
41 in the directory, place different requirements on how that information
43 unauthorized access, etc. Some directory services are {{local}},
[all …]

12345678910>>...142