Searched refs:name (Results 301 - 325 of 6474) sorted by relevance

<<11121314151617181920>>

/freebsd-10.1-release/cddl/contrib/dtracetoolkit/JavaScript/
H A Djs_calls.d16 * NAME Descriptive name of call
49 this->name = copyinstr(arg2);
50 @calls[basename(copyinstr(arg0)), "func", this->name] = count();
61 this->name = copyinstr(arg1);
63 @calls[this->filename, "obj-new", this->name] = count();
68 this->name = copyinstr(arg1);
69 @calls["<null>", "obj-free", this->name] = count();
/freebsd-10.1-release/contrib/binutils/libiberty/
H A Dunlink-if-ordinary.c63 unlink_if_ordinary (const char *name) argument
67 if (lstat (name, &st) == 0
69 return unlink (name);
H A Dputenv.c25 @samp{name=value} the string is added; if no @samp{=} is present the
26 name is unset/removed.
76 char *name = (char *) alloca (name_end - string + 1); local
77 memcpy (name, string, name_end - string);
78 name[name_end - string] = '\0';
79 return setenv (name, name_end + 1, 1);
/freebsd-10.1-release/contrib/gcclibs/libiberty/
H A Dunlink-if-ordinary.c63 unlink_if_ordinary (const char *name) argument
67 if (lstat (name, &st) == 0
69 return unlink (name);
H A Dputenv.c25 @samp{name=value} the string is added; if no @samp{=} is present the
26 name is unset/removed.
76 char *name = (char *) alloca (name_end - string + 1); local
77 memcpy (name, string, name_end - string);
78 name[name_end - string] = '\0';
79 return setenv (name, name_end + 1, 1);
/freebsd-10.1-release/contrib/gdb/gdb/gdbserver/
H A Dregcache.h58 int find_regno (const char *name);
64 void supply_register_by_name (const char *name, const void *buf);
70 void collect_register_by_name (const char *name, void *buf);
/freebsd-10.1-release/contrib/libarchive/cpio/test/
H A Dtest_option_a.c34 const char *name; member in struct:__anon1617
68 assertMakeFile(files[i].name, 0644, "a");
76 assertEqualInt(0, utime(files[i].name, &times));
81 assertEqualInt(0, stat(files[i].name, &st));
114 r = systemf("echo %s | %s -pd copy-no-a > copy-no-a.out 2>copy-no-a.err", files[1].name, testprog);
118 assertEqualInt(0, stat(files[1].name, &st));
123 r = systemf("echo %s | %s -o > archive-no-a.out 2>archive-no-a.err", files[2].name, testprog);
126 assertEqualInt(0, stat(files[2].name, &st));
138 files[3].name, testprog);
142 assertEqualInt(0, stat(files[3].name,
[all...]
/freebsd-10.1-release/contrib/wpa/wpa_supplicant/
H A Dconfig_none.c20 struct wpa_config * wpa_config_read(const char *name) argument
32 int wpa_config_write(const char *name, struct wpa_config *config) argument
37 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
/freebsd-10.1-release/crypto/heimdal/lib/gssapi/krb5/
H A Dcanonicalize_name.c17 * 3. Neither the name of the Institute nor the names of its contributors
44 krb5_principal name; local
51 ret = _gsskrb5_canon_name(minor_status, context, 1, NULL, input_name, &name);
55 *output_name = (gss_name_t)name;
/freebsd-10.1-release/crypto/openssh/openbsd-compat/
H A Dpwcache.c14 * 3. Neither the name of the University nor the names of its contributors
52 char *name; member in struct:ncache
60 if (cp->uid != uid || cp->name == NULL) {
73 if (cp->name != NULL)
74 free(cp->name);
75 cp->name = strdup(pw ? pw->pw_name : nbuf);
77 return (cp->name);
87 char *name; member in struct:ncache
95 if (cp->gid != gid || cp->name == NULL) {
108 if (cp->name !
[all...]
/freebsd-10.1-release/etc/rc.d/
H A Damd13 name="amd"
15 command="/usr/sbin/${name}"
47 load_rc_config $name
H A Dwpa_supplicant13 name="wpa_supplicant"
37 load_rc_config $name
41 pidfile="/var/run/${name}/${ifn}.pid"
/freebsd-10.1-release/gnu/usr.bin/cc/include/
H A D__wmmintrin_aes.h35 #define MAKE_AES(name) \
37 _mm_## name ##_si128(__m128i __V, __m128i __R) \
41 __asm__ (#name " %2, %0": "=x" (v): "0" (v), "xm" (__R)); \
/freebsd-10.1-release/lib/libc/gen/
H A Dgetdomainname.c13 * 4. Neither the name of the University nor the names of its contributors
42 getdomainname(name, namelen)
43 char *name;
52 if (sysctl(mib, 2, name, &size, NULL, 0) == -1)
H A Dgethostname.c13 * 4. Neither the name of the University nor the names of its contributors
43 gethostname(name, namelen)
44 char *name;
51 if (sysctl(mib, 2, name, &namelen, NULL, 0) == -1) {
/freebsd-10.1-release/sys/arm/include/
H A Dboard.h37 const char *board_name; /* Human readable name */
45 #define ARM_BOARD(id, name) \
48 .board_name = name, \
56 #define ARM_BOARD(id, name)
/freebsd-10.1-release/sys/contrib/octeon-sdk/
H A Dcvmx-qlm.h18 * * Neither the name of Cavium Inc. nor the names of
57 const char *name; member in struct:__anon7288
108 * @param name String name of field
112 extern uint64_t cvmx_qlm_jtag_get(int qlm, int lane, const char *name);
119 * @param name String name of field
122 extern void cvmx_qlm_jtag_set(int qlm, int lane, const char *name, uint64_t value);
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Bin/
H A Drb_calls.d16 * NAME Descriptive name of call
49 this->name = strjoin(strjoin(copyinstr(arg0), "::"), copyinstr(arg1));
50 @calls[basename(copyinstr(arg2)), "method", this->name] = count();
55 this->name = copyinstr(arg0);
58 @calls[this->filename, "obj-new", this->name] = count();
63 this->name = copyinstr(arg0);
64 @calls[".", "obj-free", this->name] = count();
74 this->name = copyinstr(arg0);
75 @calls[basename(copyinstr(arg1)), "raise", this->name] = count();
/freebsd-10.1-release/cddl/contrib/dtracetoolkit/Ruby/
H A Drb_calls.d16 * NAME Descriptive name of call
49 this->name = strjoin(strjoin(copyinstr(arg0), "::"), copyinstr(arg1));
50 @calls[basename(copyinstr(arg2)), "method", this->name] = count();
55 this->name = copyinstr(arg0);
58 @calls[this->filename, "obj-new", this->name] = count();
63 this->name = copyinstr(arg0);
64 @calls[".", "obj-free", this->name] = count();
74 this->name = copyinstr(arg0);
75 @calls[basename(copyinstr(arg1)), "raise", this->name] = count();
/freebsd-10.1-release/contrib/file/python/
H A Dsetup.py4 setup(name = 'Magic file extensions',
/freebsd-10.1-release/contrib/file/src/
H A Dmygetopt.h22 * 4. Neither the name of The NetBSD Foundation nor the names of its
52 /* name of long option */
53 const char *name; member in struct:option
/freebsd-10.1-release/contrib/gdb/gdb/config/arm/
H A Dtm-embed.h44 #define IN_SOLIB_CALL_TRAMPOLINE(pc, name) arm_in_call_stub (pc, name)
46 extern int arm_in_call_stub (CORE_ADDR pc, char *name);
50 #define IN_SIGTRAMP(pc, name) 0
/freebsd-10.1-release/contrib/groff/src/include/
H A Dpaper.h22 char *name; member in struct:paper
/freebsd-10.1-release/contrib/libarchive/libarchive/test/
H A Dtest_compat_solaris_tar_acl.c42 const char *name; local
60 &type, &permset, &tag, &qual, &name));
65 assert(name == NULL);
69 &type, &permset, &tag, &qual, &name));
74 assert(name == NULL);
78 &type, &permset, &tag, &qual, &name));
83 assert(name == NULL);
87 &type, &permset, &tag, &qual, &name));
92 assertEqualString(name, "lp");
96 &type, &permset, &tag, &qual, &name));
[all...]
/freebsd-10.1-release/contrib/serf/build/
H A Dgen_def.py37 # then a space may exist between the "*" and the function name. Thus,
55 for name in _funcs.findall(content):
56 exports.append(name)
57 for name in _types.findall(content):
58 exports.append(name)

Completed in 313 milliseconds

<<11121314151617181920>>