Searched refs:name (Results 276 - 300 of 11473) sorted by relevance

<<11121314151617181920>>

/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/regformats/
H A Dregdat.sh128 name=x
136 if test "${type}" = "name"; then
137 name="${entry}"
138 echo "struct reg regs_${name}[] = {"
152 elif test "${name}" = x; then
153 echo "$0: $1 does not specify \`\`name''." 1>&2
164 echo "const char *expedite_regs_${name}[] = { \"`echo ${expedite} | sed 's/,/", "/g'`\", 0 };"
167 echo "const char *xmltarget_${name} = 0;"
169 echo "const char *xmltarget_${name} = \"@<target>\\"
179 echo "const char *xmltarget_${name}
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/gen/
H A Duname.c15 * 3. Neither the name of the University nor the names of its contributors
54 uname(name)
55 struct utsname *name;
61 _DIAGASSERT(name != NULL);
65 len = sizeof(name->sysname);
66 if (sysctl(mib, 2, &name->sysname, &len, NULL, 0) == -1)
71 len = sizeof(name->nodename);
72 if (sysctl(mib, 2, &name->nodename, &len, NULL, 0) == -1)
77 len = sizeof(name->release);
78 if (sysctl(mib, 2, &name
[all...]
/netbsd-6-1-5-RELEASE/dist/dhcp/client/
H A Ddhclient.conf1 send host-name "andare.fugue.com";
4 supersede domain-name "fugue.com home.vix.com";
5 prepend domain-name-servers 127.0.0.1;
7 domain-name, domain-name-servers, host-name;
8 require subnet-mask, domain-name-servers;
28 option host-name "andare.swiftmedia.com";
32 option domain-name-servers 127.0.0.1;
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/mantools/
H A Dxpostconf19 # %CLASS class-name mode
20 # %PARAM param-name mode
41 $param_text{$name} = $text;
43 printf "saving entry %s %.20s..\n", $name, $text;
46 $class_text{$name} = $text;
48 printf "saving class %s %.20s..\n", $name, $text;
62 next unless ($name || /\S/);
68 if ($name && $text) {
72 # Reset the parameter name and accumulated text.
74 $name
[all...]
/netbsd-6-1-5-RELEASE/dist/ipf/lib/
H A Dgetportproto.c14 int getportproto(name, proto)
15 char *name;
21 if (ISDIGIT(*name)) {
25 for (s = name; *s != '\0'; s++)
29 number = atoi(name);
36 s = getservbyname(name, p ? p->p_name : NULL);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/dns/include/dns/
H A Dfixedname.h33 * dns_fixedname_t is a convenience type containing a name, an offsets table,
34 * and a dedicated buffer big enough for the longest possible name.
62 #include <dns/name.h>
69 dns_name_t name; member in struct:dns_fixedname
77 dns_name_init(&((fn)->name), (fn)->offsets); \
80 dns_name_setbuffer(&((fn)->name), &((fn)->buffer)); \
84 dns_name_invalidate(&((fn)->name))
86 #define dns_fixedname_name(fn) (&((fn)->name))
/netbsd-6-1-5-RELEASE/external/bsd/libarchive/dist/libarchive/
H A Darchive_write_set_format_by_name.c45 struct { const char *name; int (*setter)(struct archive *); } names[] = member in struct:__anon1609
65 archive_write_set_format_by_name(struct archive *a, const char *name) argument
69 for (i = 0; names[i].name != NULL; i++) {
70 if (strcmp(name, names[i].name) == 0)
74 archive_set_error(a, EINVAL, "No such format '%s'", name);
/netbsd-6-1-5-RELEASE/external/bsd/openpam/dist/lib/
H A Dpam_getenv.c21 * 3. The name of the author may not be used to endorse or promote
60 const char *name)
65 ENTERS(name);
68 if (name == NULL || strchr(name, '=') != NULL)
70 if ((i = openpam_findenv(pamh, name, strlen(name))) < 0)
59 pam_getenv(pam_handle_t *pamh, const char *name) argument
H A Dpam_setenv.c21 * 3. The name of the author may not be used to endorse or promote
61 const char *name,
73 if (name == NULL || value == NULL || strchr(name, '=') != NULL)
77 if (!overwrite && openpam_findenv(pamh, name, strlen(name)) >= 0)
81 if (asprintf(&env, "%s=%s", name, value) < 0)
60 pam_setenv(pam_handle_t *pamh, const char *name, const char *value, int overwrite) argument
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dbasename.c1 /* basename.c -- return the last element in a file name
31 Return the address of the last file name component of NAME. If
32 NAME has no file name components because it is all slashes, return
36 base_name (char const *name) argument
38 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name);
49 /* If the file name ends in slash, use the trailing slash as
71 base_len (char const *name) argument
75 for (len = strlen (name); 1 < len && ISSLASH (name[le
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/
H A Doutput-file.c32 output_file_create (char *name) argument
34 if (name[0] == '-' && name[1] == '\0')
35 as_fatal (_("can't open a bfd on stdout %s"), name);
37 else if (!(stdoutput = bfd_openw (name, TARGET_FORMAT)))
44 as_fatal (_("can't create %s: %s"), name, bfd_errmsg (err));
/netbsd-6-1-5-RELEASE/sys/dev/pad/
H A Dpadvol.h37 #define PAD_DEFINE_FILTER(name) \
39 name##_fetch_to(struct audio_softc *, stream_fetcher_t *, \
41 stream_filter_t * name(struct audio_softc *, \
44 name(struct audio_softc *asc, const audio_params_t *from, \
47 return pad_filter_factory(asc, name##_fetch_to); \
50 name##_fetch_to(struct audio_softc *asc, stream_fetcher_t *self, \
/netbsd-6-1-5-RELEASE/lib/libutil/
H A Dgetbootfile.c45 static char name[MAXPATHLEN]; variable
59 /* find real boot-kernel name */
62 size = sizeof(name) - 1;
63 if (sysctl(mib, 2, name + 1, &size, NULL, 0) == 0) {
69 if (name[1] != '\0') {
70 name[0] = '/';
71 kernel = name;
/netbsd-6-1-5-RELEASE/gnu/dist/diffutils/lib/
H A Dbasename.c33 Return the address of the last file name component of NAME. If
34 NAME has no file name components because it is all slashes, return
38 base_name (char const *name) argument
40 char const *base = name + FILESYSTEM_PREFIX_LEN (name);
51 /* If the file name ends in slash, use the trailing slash as
73 base_len (char const *name) argument
77 for (len = strlen (name); 1 < len && ISSLASH (name[len - 1]); len--)
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/util/
H A Dname_code.c7 /* name to number table mapping
13 /* const char *name;
18 /* int name_code(table, flags, name)
21 /* const char *name;
27 /* This module does simple name<->number mapping. The process
28 /* is controlled by a table of (name, code) values.
30 /* corresponds to "name not found".
32 /* name_code() looks up the code that corresponds with the name.
43 /* When the search fails, the result is the "name not found" code
69 /* name_code - look up code by name */
71 name_code(const NAME_CODE *table, int flags, const char *name) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/microcode/ral/
H A Dbuild.c31 output(const char *name, const uint8_t *ucode, int size) argument
36 printf("creating %s length %d\n", name, size);
38 fd = open(name, O_WRONLY | O_CREAT | O_TRUNC, 0644);
40 err(1, "%s", name);
44 err(1, "%s", name);
46 errx(1, "%s: short write", name);
/netbsd-6-1-5-RELEASE/sys/dev/microcode/rum/
H A Dbuild.c31 output(const char *name, const uint8_t *ucode, int size) argument
36 printf("creating %s length %d\n", name, size);
38 fd = open(name, O_WRONLY | O_CREAT | O_TRUNC, 0644);
40 err(1, "%s", name);
44 err(1, "%s", name);
46 errx(1, "%s: short write", name);
/netbsd-6-1-5-RELEASE/sys/dev/microcode/zyd/
H A Dbuild.c30 output(const char *name, const uint8_t *ucode, int size) argument
35 printf("creating %s length %d\n", name, size);
37 fd = open(name, O_WRONLY | O_CREAT | O_TRUNC, 0644);
39 err(1, "%s", name);
43 err(1, "%s", name);
45 errx(1, "%s: short write", name);
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/global/
H A Dcfg_parser.c17 /* char *cfg_get_str(parser, name, defval, min, max)
19 /* const char *name;
24 /* int cfg_get_int(parser, name, defval, min, max)
26 /* const char *name;
31 /* int cfg_get_bool(parser, name, defval)
33 /* const char *name;
113 const char *name, const char *defval,
119 if ((strval = (char *) dict_lookup(parser->name, name)) == 0)
125 parser->name, le
112 get_dict_str(const struct CFG_PARSER *parser, const char *name, const char *defval, int min, int max) argument
134 get_main_str(const struct CFG_PARSER *parser, const char *name, const char *defval, int min, int max) argument
148 get_dict_int(const struct CFG_PARSER *parser, const char *name, int defval, int min, int max) argument
175 get_main_int(const struct CFG_PARSER *parser, const char *name, int defval, int min, int max) argument
188 get_dict_bool(const struct CFG_PARSER *parser, const char *name, int defval) argument
210 get_main_bool(const struct CFG_PARSER *parser, const char *name, int defval) argument
247 cfg_get_str(const CFG_PARSER *parser, const char *name, const char *defval, int min, int max) argument
267 cfg_get_int(const CFG_PARSER *parser, const char *name, int defval, int min, int max) argument
281 cfg_get_bool(const CFG_PARSER *parser, const char *name, int defval) argument
[all...]
H A Dmail_conf.h27 #define CONF_ENV_LOGTAG "MAIL_LOGTAG" /* instance name */
91 #define set_mail_conf_nbool_int(name, value) \
92 set_mail_conf_nbool((name), (value) ? CONFIG_BOOL_YES : CONFIG_BOOL_NO)
99 const char *name; /* config variable name */ member in struct:__anon2410
107 const char *name; /* config variable name */ member in struct:__anon2411
115 const char *name; /* config variable name */ member in struct:__anon2412
123 const char *name; /* confi member in struct:__anon2413
131 const char *name; /* config variable name */ member in struct:__anon2414
137 const char *name; /* config variable name */ member in struct:__anon2415
145 const char *name; /* config variable name */ member in struct:__anon2416
153 const char *name; /* config variable name */ member in struct:__anon2417
172 const char *name; /* config variable name */ member in struct:__anon2418
180 const char *name; /* config variable name */ member in struct:__anon2419
188 const char *name; /* config variable name */ member in struct:__anon2420
196 const char *name; /* config variable name */ member in struct:__anon2421
204 const char *name; /* config variable name */ member in struct:__anon2422
210 const char *name; /* config variable name */ member in struct:__anon2423
218 const char *name; /* config variable name */ member in struct:__anon2424
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/tests/
H A Dxgettext-glade-326 <property name="visible">no</property>
27 <property name="title" translatable="yes">gedit: ASCII table</property>
28 <property name="type">GTK_WINDOW_TOPLEVEL</property>
29 <property name="modal">no</property>
30 <property name="allow_shrink">yes</property>
31 <property name="allow_grow">yes</property>
32 <property name="window-position">GTK_WIN_POS_NONE</property>
36 <property name="homogeneous">no</property>
37 <property name="spacing">8</property>
38 <property name
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/m68k/include/
H A Dasm.h56 * 4. Neither the name of the University nor the names of its contributors
77 #define PIC_PLT(name) name@PLTPC
79 #define PIC_PLT(name) name
84 # define _C_LABEL(name) name
86 # define _C_LABEL(name) name
90 # define _C_LABEL(name)
[all...]
/netbsd-6-1-5-RELEASE/sys/net/npf/
H A Dnpf_ncode.h145 const char * name; member in struct:npf_instruction
149 .name = "ret",
155 .name = "advr",
161 .name = "j",
167 .name = "invl",
170 .name = "tag",
177 .name = "move",
184 .name = "lw",
191 .name = "cmp",
198 .name
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/atf/dist/atf-c/detail/
H A Denv.c44 atf_env_get(const char *name) argument
46 const char* val = getenv(name);
52 atf_env_has(const char *name) argument
54 return getenv(name) != NULL;
58 atf_env_set(const char *name, const char *val) argument
63 if (setenv(name, val, 1) == -1)
65 "'%s' to '%s'", name, val);
71 err = atf_text_format(&buf, "%s=%s", name, val);
75 "'%s' to '%s'", name, val);
86 atf_env_unset(const char *name) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/unit/atf-src/atf-c/detail/
H A Denv.c46 atf_env_get(const char *name) argument
48 const char* val = getenv(name);
54 atf_env_has(const char *name) argument
56 return getenv(name) != NULL;
60 atf_env_set(const char *name, const char *val) argument
65 if (setenv(name, val, 1) == -1)
67 "'%s' to '%s'", name, val);
73 err = atf_text_format(&buf, "%s=%s", name, val);
77 "'%s' to '%s'", name, val);
88 atf_env_unset(const char *name) argument
[all...]

Completed in 266 milliseconds

<<11121314151617181920>>