Searched refs:name (Results 201 - 225 of 7872) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssl/include/openssl/
H A Dpem.h69 # define PEM_read_cb_fnsig(name, type, INTYPE, readname) \
70 type *PEM_##readname##_##name(INTYPE *out, type **x, \
72 # define PEM_read_cb_ex_fnsig(name, type, INTYPE, readname) \
73 type *PEM_##readname##_##name##_ex(INTYPE *out, type **x, \
78 # define PEM_write_fnsig(name, type, OUTTYPE, writename) \
79 int PEM_##writename##_##name(OUTTYPE *out, const type *x)
80 # define PEM_write_cb_fnsig(name, type, OUTTYPE, writename) \
81 int PEM_##writename##_##name(OUTTYPE *out, const type *x, \
85 # define PEM_write_ex_fnsig(name, type, OUTTYPE, writename) \
86 int PEM_##writename##_##name##_e
[all...]
/freebsd-current/cddl/contrib/opensolaris/tools/ctf/common/
H A Dsymbol.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
35 ignore_symbol(GElf_Sym *sym, const char *name) argument
50 if (strcmp(name, "_START_") == 0 || strcmp(name, "_END_") == 0)
/freebsd-current/crypto/heimdal/lib/gssapi/ntlm/
H A Dinquire_cred_by_mech.c17 * 3. Neither the name of the Institute nor the names of its contributors
41 gss_name_t * name,
49 if (name)
50 *name = GSS_C_NO_NAME;
37 _gss_ntlm_inquire_cred_by_mech( OM_uint32 * minor_status, const gss_cred_id_t cred_handle, const gss_OID mech_type, gss_name_t * name, OM_uint32 * initiator_lifetime, OM_uint32 * acceptor_lifetime, gss_cred_usage_t * cred_usage ) argument
/freebsd-current/crypto/heimdal/lib/roken/
H A Dgethostname.c17 * 3. Neither the name of the Institute nor the names of its contributors
44 * Return the local host's name in "name", up to "namelen" characters.
45 * "name" will be null-terminated if "namelen" is big enough.
51 gethostname(char *name, int namelen) argument
61 strlcpy (name, utsname.nodename, namelen);
65 strlcpy (name, "some.random.host", namelen);
/freebsd-current/contrib/netbsd-tests/fs/ffs/
H A Dffs_common.sh40 local name="${1}"; shift
44 atf_test_case "${name}" cleanup
46 eval "${name}_head() { \
50 eval "${name}_body() { \
55 eval "${name}_cleanup() { \
61 tests="${tests} ${name}"
66 local name="${1}"; shift
70 atf_test_case "${name}" cleanup
72 eval "${name}_head() { \
77 eval "${name}_bod
[all...]
/freebsd-current/contrib/netbsd-tests/sys/rc/
H A Dh_args.sh41 name="h_args"
42 rcvar="${name}"
63 load_rc_config "${name}"
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABIX86_64.h16 std::string GetMCName(std::string name) override {
17 MapRegisterName(name, "stmm", "st");
18 return name;
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DTraceExporter.cpp25 TraceExporter::FindPlugin(llvm::StringRef name) { argument
27 PluginManager::GetTraceExporterCreateCallback(name))
30 return createInvalidPlugInError(name);
/freebsd-current/contrib/bc/scripts/
H A Dlink.sh60 name="$link.$ext"
62 name="$link"
65 ln -fs "$base" "$bindir/$name"
/freebsd-current/contrib/openpam/lib/libpam/
H A Dopenpam_features.c13 * 3. The name of the author may not be used to endorse or promote
38 #define STRUCT_OPENPAM_FEATURE(name, descr, dflt) \
39 [OPENPAM_##name] = { \
40 "OPENPAM_" #name, \
/freebsd-current/contrib/ntp/sntp/libopts/
H A Dnested.c129 * Associate a name with either a string or no value.
132 * @param[in] name the name of the "suboption"
133 * @param[in] nm_len the length of the name
140 add_string(void ** pp, char const * name, size_t nm_len, argument
146 pNV = AGALOC(sz, "option name/str value pair");
175 memcpy(pNV->pzName, name, nm_len);
182 * Associate a name with a boolean value
185 * @param[in] name the name o
193 add_bool(void ** pp, char const * name, size_t nm_len, char const * val, size_t d_len) argument
234 add_number(void ** pp, char const * name, size_t nm_len, char const * val, size_t d_len) argument
271 add_nested(void ** pp, char const * name, size_t nm_len, char * val, size_t d_len) argument
300 scan_name(char const * name, tOptionValue * res) argument
431 scan_xml_name(char const * name, size_t * nm_len, tOptionValue * val) argument
705 optionLoadNested(char const * text, char const * name, size_t nm_len) argument
[all...]
/freebsd-current/crypto/openssl/crypto/
H A Dprovider_local.h13 char *name; member in struct:__anon4002
19 char *name; member in struct:__anon4003
32 const char *name,
/freebsd-current/sys/cddl/compat/opensolaris/sys/
H A Ddnlc.h32 #define dnlc_lookup(dvp, name) (NULL)
33 #define dnlc_update(dvp, name, vp) do { } while (0)
34 #define dnlc_remove(dvp, name) do { } while (0)
/freebsd-current/bin/pkill/tests/
H A Dpgrep-s_test.sh7 name="pgrep -s <sid>"
16 echo "ok 1 - $name"
18 echo "not ok 1 - $name"
23 name="pgrep -s 0"
31 echo "ok 2 - $name"
33 echo "not ok 2 - $name"
H A Dpgrep-_u_test.sh7 name="pgrep -U <uid>"
16 echo "ok 1 - $name"
18 echo "not ok 1 - $name"
23 name="pgrep -U <user>"
32 echo "ok 2 - $name"
34 echo "not ok 2 - $name"
H A Dpgrep-g_test.sh7 name="pgrep -g <pgrp>"
16 echo "ok 1 - $name"
18 echo "not ok 1 - $name"
23 name="pgrep -g 0"
31 echo "ok 2 - $name"
33 echo "not ok 2 - $name"
H A Dpgrep-_g_test.sh7 name="pgrep -G <gid>"
16 echo "ok 1 - $name"
18 echo "not ok 1 - $name"
23 name="pgrep -G <group>"
32 echo "ok 2 - $name"
34 echo "not ok 2 - $name"
H A Dpkill-_u_test.sh7 name="pkill -U <uid>"
17 echo "ok 1 - $name"
20 echo "not ok 1 - $name"
25 name="pkill -U <user>"
35 echo "ok 2 - $name"
38 echo "not ok 2 - $name"
H A Dpkill-g_test.sh7 name="pkill -g <pgrp>"
17 echo "ok 1 - $name"
20 echo "not ok 1 - $name"
25 name="pkill -g 0"
34 echo "ok 2 - $name"
37 echo "not ok 2 - $name"
H A Dpkill-s_test.sh7 name="pkill -s <sid>"
17 echo "ok 1 - $name"
20 echo "not ok 1 - $name"
25 name="pkill -s 0"
34 echo "ok 2 - $name"
37 echo "not ok 2 - $name"
H A Dpkill-_g_test.sh7 name="pkill -G <gid>"
17 echo "ok 1 - $name"
20 echo "not ok 1 - $name"
25 name="pkill -G <group>"
35 echo "ok 2 - $name"
38 echo "not ok 2 - $name"
/freebsd-current/lib/libcasper/services/cap_netdb/
H A Dcap_netdb.h40 struct protoent *cap_getprotobyname(cap_channel_t *chan, const char *name);
44 #define cap_getprotobyname(chan, name) getprotobyname(name)
/freebsd-current/sys/sys/
H A Ddnv.h54 * The dnvlist_get functions returns value associated with the given name.
57 * If no element of the given name and type exists, the function will return
61 bool dnvlist_get_bool(const nvlist_t *nvl, const char *name, bool defval);
62 uint64_t dnvlist_get_number(const nvlist_t *nvl, const char *name, uint64_t defval);
63 const char *dnvlist_get_string(const nvlist_t *nvl, const char *name, const char *defval);
64 const nvlist_t *dnvlist_get_nvlist(const nvlist_t *nvl, const char *name, const nvlist_t *defval);
65 int dnvlist_get_descriptor(const nvlist_t *nvl, const char *name, int defval);
66 const void *dnvlist_get_binary(const nvlist_t *nvl, const char *name, size_t *sizep, const void *defval, size_t defsize);
69 * The dnvlist_take functions returns value associated with the given name and
72 * If no element of the given name an
[all...]
/freebsd-current/tests/sys/geom/class/stripe/
H A Dconf.sh3 name="$(mktemp -u stripe.XXXXXX)"
9 [ -c /dev/$class/$name ] && gstripe destroy $name
/freebsd-current/tests/sys/geom/class/concat/
H A Dconf.sh3 name="$(mktemp -u concat.XXXXXX)"
9 [ -c /dev/$class/$name ] && gconcat destroy $name

Completed in 331 milliseconds

1234567891011>>