Searched refs:name (Results 151 - 175 of 6534) sorted by relevance

1234567891011>>

/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_by_name.c46 struct { const char *name; int (*setter)(struct archive *); } names[] = member in struct:__anon1667
63 archive_write_add_filter_by_name(struct archive *a, const char *name) argument
67 for (i = 0; names[i].name != NULL; i++) {
68 if (strcmp(name, names[i].name) == 0)
72 archive_set_error(a, EINVAL, "No such filter '%s'", name);
/freebsd-10.2-release/contrib/diff/lib/
H A Dbasename.c31 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 + FILESYSTEM_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[len - 1]); len--)
/freebsd-10.2-release/contrib/ipfilter/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);
/freebsd-10.2-release/contrib/binutils/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));
/freebsd-10.2-release/bin/pkill/tests/
H A Dpgrep-l_test.sh8 name="pgrep -l"
15 echo "ok - $name"
17 echo "not ok - $name"
H A Dpkill-P_test.sh8 name="pkill -P <ppid>"
18 echo "ok - $name"
21 echo "not ok - $name"
/freebsd-10.2-release/tools/regression/geom/ConfCmp/
H A Da2.conf4 <name>DEV-class</name>
7 <name>wd0s1f</name>
17 <name>wd0s1e</name>
27 <name>wd0s1c</name>
37 <name>wd0s1b</name>
[all...]
H A Da2a.conf4 <name>DEV-class</name>
7 <name>wd0s1f</name>
17 <name>wd0s1e</name>
27 <name>wd0s1c</name>
37 <name>wd0s1b</name>
[all...]
H A Da2b.conf4 <name>DEV-class</name>
7 <name>wd0s1f</name>
17 <name>wd0s1e</name>
27 <name>wd0s1c</name>
37 <name>wd0s1b</name>
[all...]
H A Da2c.conf4 <name>DEV-class</name>
7 <name>wd0s1f</name>
17 <name>wd0s1e</name>
27 <name>wd0s1c</name>
37 <name>wd0s1b</name>
[all...]
H A Da2d.conf4 <name>DEV-class</name>
7 <name>wd0s1f</name>
17 <name>wd0s1e</name>
27 <name>wd0s1c</name>
37 <name>wd0s1b</name>
[all...]
/freebsd-10.2-release/usr.bin/bmake/tests/shell/select/
H A DMakefile.test12 .SHELL: name=sh
17 .SHELL: name=csh
22 .SHELL: name=ksh
/freebsd-10.2-release/sys/ia64/include/
H A Dpcpu.h90 #define __pcpu_offset(name) __offsetof(struct pcpu, name)
91 #define __pcpu_type(name) __typeof(((struct pcpu *)0)->name)
93 #define PCPU_ADD(name, val) \
95 __pcpu_type(pc_ ## name) *nmp; \
98 "=r"(nmp) : "i"(__pcpu_offset(pc_ ## name))); \
103 #define PCPU_GET(name) \
104 ({ __pcpu_type(pc_ ## name) *nmp; \
105 __pcpu_type(pc_ ## name) re
[all...]
/freebsd-10.2-release/sys/sys/
H A Dfail.h60 const char *fp_name; /**< name of fail point */
69 #define FAIL_POINT_DYNAMIC_NAME 0x01 /**< Must free name on destroy */
82 * Initialize a fail-point. The name is formed in printf-like fashion
131 #define _FAIL_POINT_NAME(name) _fail_point_##name
137 * @param name The name of the failpoint in the sysctl tree (and printouts)
141 #define KFAIL_POINT_RETURN(parent, name) \
142 KFAIL_POINT_CODE(parent, name, return RETURN_VALUE)
147 * @param name Th
[all...]
H A Dsdt.h38 #define DTRACE_PROBE(prov, name) { \
39 extern void __dtrace_##prov##___##name(void); \
40 __dtrace_##prov##___##name(); \
43 #define DTRACE_PROBE1(prov, name, arg1) { \
44 extern void __dtrace_##prov##___##name(unsigned long); \
45 __dtrace_##prov##___##name((unsigned long)arg1); \
48 #define DTRACE_PROBE2(prov, name, arg1, arg2) { \
49 extern void __dtrace_##prov##___##name(unsigned long, \
51 __dtrace_##prov##___##name((unsigned long)arg1, \
55 #define DTRACE_PROBE3(prov, name, arg
404 const char *name; member in struct:sdt_probe
411 char *name; /* Provider name. */ member in struct:sdt_provider
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangPersistentVariables.cpp36 const ConstString &name,
41 ClangExpressionVariableSP var_sp (GetVariable(name));
44 var_sp = CreateVariable(exe_scope, name, user_type, byte_order, addr_byte_size);
54 const char *name = variable->GetName().AsCString(); local
56 if (*name != '$')
58 name++;
60 if (strtoul(name, NULL, 0) == m_next_persistent_variable_id - 1)
69 ConstString name(name_cstr);
70 return name;
74 ClangPersistentVariables::RegisterPersistentType (const ConstString &name, argument
35 CreatePersistentVariable(ExecutionContextScope *exe_scope, const ConstString &name, const TypeFromUser& user_type, lldb::ByteOrder byte_order, uint32_t addr_byte_size) argument
81 GetPersistentType(const ConstString &name) argument
[all...]
/freebsd-10.2-release/sbin/dhclient/
H A Dhash.c18 * 3. Neither the name of The Internet Software Consortium nor the names
63 do_hash(unsigned char *name, int len, int size) argument
65 unsigned char *s = name;
78 void add_hash(struct hash_table *table, unsigned char *name, int len, argument
87 len = strlen((char *)name);
89 hashno = do_hash(name, len, table->hash_count);
93 warning("Can't add %s to hash table.", name);
96 bp->name = name;
104 hash_lookup(struct hash_table *table, unsigned char *name, in argument
[all...]
/freebsd-10.2-release/sys/tools/
H A Dvnode_if.awk15 # 4. Neither the name of the University nor the names of its contributors
67 function add_debug_code(name, arg, pos, ind)
73 if (lockdata[name, arg, pos] && (lockdata[name, arg, pos] != "-")) {
76 if (lockdata[name, arg, pos] == "L")
78 else if (lockdata[name, arg, pos] == "U")
80 else if (lockdata[name, arg, pos] == "E")
88 function add_pre(name)
90 if (lockdata[name, "pre"]) {
91 printc("\t"lockdata[name, "pr
[all...]
/freebsd-10.2-release/crypto/heimdal/lib/gssapi/mech/
H A Dgss_display_name.c38 struct _gss_name *name = (struct _gss_name *) input_name; local
45 if (name == NULL) {
51 * If we know it, copy the buffer used to import the name in
55 if (name->gn_value.value) {
56 output_name_buffer->value = malloc(name->gn_value.length);
61 output_name_buffer->length = name->gn_value.length;
62 memcpy(output_name_buffer->value, name->gn_value.value,
65 *output_name_type = &name->gn_type;
70 HEIM_SLIST_FOREACH(mn, &name->gn_mn, gmn_link) {
/freebsd-10.2-release/contrib/wpa/src/utils/
H A Dext_password_i.h15 const char *name; member in struct:ext_password_backend
18 struct wpabuf * (*get)(void *ctx, const char *name);
/freebsd-10.2-release/lib/libthr/arch/amd64/include/
H A Dpthread_md.h11 * 2. Neither the name of the author nor the names of its contributors
56 * Evaluates to the byte offset of the per-tcb variable name.
58 #define __tcb_offset(name) __offsetof(struct tcb, name)
61 * Evaluates to the type of the per-tcb variable name.
63 #define __tcb_type(name) __typeof(((struct tcb *)0)->name)
66 * Evaluates to the value of the per-tcb variable name.
68 #define TCB_GET64(name) ({ \
69 __tcb_type(name) __resul
[all...]
/freebsd-10.2-release/lib/libthr/arch/i386/include/
H A Dpthread_md.h55 * Evaluates to the byte offset of the per-tcb variable name.
57 #define __tcb_offset(name) __offsetof(struct tcb, name)
60 * Evaluates to the type of the per-tcb variable name.
62 #define __tcb_type(name) __typeof(((struct tcb *)0)->name)
65 * Evaluates to the value of the per-tcb variable name.
67 #define TCB_GET32(name) ({ \
68 __tcb_type(name) __result; \
73 : "m" (*(volatile u_int *)(__tcb_offset(name)))); \
[all...]
/freebsd-10.2-release/lib/libc/iconv/
H A Dcitrus_aliasname_local.h43 __isforcemapping(const char *name) argument
46 return (_bcs_strcasecmp("/force", name));
/freebsd-10.2-release/sbin/geom/misc/
H A Dsubr.h37 off_t g_get_mediasize(const char *name);
38 unsigned int g_get_sectorsize(const char *name);
40 int g_metadata_read(const char *name, unsigned char *md, size_t size,
42 int g_metadata_store(const char *name, const unsigned char *md, size_t size);
43 int g_metadata_clear(const char *name, const char *magic);
49 int gctl_change_param(struct gctl_req *req, const char *name, int len,
51 int gctl_delete_param(struct gctl_req *req, const char *name);
52 int gctl_has_param(struct gctl_req *req, const char *name);
/freebsd-10.2-release/contrib/ncurses/form/
H A Dfrm_hook.c23 * Except as contained in this notice, the name(s) of the above copyright *
38 #define GEN_HOOK_SET_FUNCTION( typ, name ) \
39 NCURSES_IMPEXP int NCURSES_API set_ ## typ ## _ ## name (FORM *form, Form_Hook func)\
41 T((T_CALLED("set_" #typ"_"#name"(%p,%p)"), form, func));\
42 (Normalize_Form( form ) -> typ ## name) = func ;\
47 #define GEN_HOOK_GET_FUNCTION( typ, name ) \
48 NCURSES_IMPEXP Form_Hook NCURSES_API typ ## _ ## name ( const FORM *form )\
50 T((T_CALLED(#typ "_" #name "(%p)"), form));\
51 returnFormHook( Normalize_Form( form ) -> typ ## name );\

Completed in 181 milliseconds

1234567891011>>