Searched refs:type (Results 226 - 250 of 5029) sorted by relevance

1234567891011>>

/freebsd-10.1-release/tools/regression/sockets/fstat/
H A Dfstat.c43 dotest(int domain, int type, int protocol) argument
48 sock = socket(domain, type, protocol);
50 err(-1, "socket(%d, %d, %d)", domain, type, protocol);
53 err(-1, "fstat on socket(%d, %d, %d)", domain, type,
/freebsd-10.1-release/usr.sbin/bsdinstall/partedit/
H A Ddiskeditor.h38 const char *type; member in struct:partedit_item
/freebsd-10.1-release/usr.sbin/pkg/
H A Ddns_utils.h32 unsigned int type; member in struct:dns_srvinfo
/freebsd-10.1-release/contrib/ntp/lib/isc/include/isc/
H A Dsymtab.h30 * Keys are C strings, and key comparisons are case-insensitive. A type may
31 * be specified when looking up, defining, or undefining. A type value of
32 * 0 means "match any type"; any other value will only match the given
33 * type.
35 * It's possible that a client will attempt to define a <key, type, value>
36 * tuple when a tuple with the given key and type already exists in the table.
42 * with the old <key, type, value> tuple.
47 * A lookup of a key using type 0 will return the most-recently defined
48 * symbol with that key. An undefine of a key using type 0 will undefine the
50 * type
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/cms/
H A Dcms_att.c98 const ASN1_OBJECT *obj, int type,
101 if (X509at_add1_attr_by_OBJ(&si->signedAttrs, obj, type, bytes, len))
107 int nid, int type, const void *bytes, int len)
109 if (X509at_add1_attr_by_NID(&si->signedAttrs, nid, type, bytes, len))
115 const char *attrname, int type,
118 if (X509at_add1_attr_by_txt(&si->signedAttrs, attrname, type, bytes, len))
124 int lastpos, int type)
126 return X509at_get0_data_by_OBJ(si->signedAttrs, oid, lastpos, type);
164 const ASN1_OBJECT *obj, int type,
167 if (X509at_add1_attr_by_OBJ(&si->unsignedAttrs, obj, type, byte
97 CMS_signed_add1_attr_by_OBJ(CMS_SignerInfo *si, const ASN1_OBJECT *obj, int type, const void *bytes, int len) argument
106 CMS_signed_add1_attr_by_NID(CMS_SignerInfo *si, int nid, int type, const void *bytes, int len) argument
114 CMS_signed_add1_attr_by_txt(CMS_SignerInfo *si, const char *attrname, int type, const void *bytes, int len) argument
123 CMS_signed_get0_data_by_OBJ(CMS_SignerInfo *si, ASN1_OBJECT *oid, int lastpos, int type) argument
163 CMS_unsigned_add1_attr_by_OBJ(CMS_SignerInfo *si, const ASN1_OBJECT *obj, int type, const void *bytes, int len) argument
172 CMS_unsigned_add1_attr_by_NID(CMS_SignerInfo *si, int nid, int type, const void *bytes, int len) argument
181 CMS_unsigned_add1_attr_by_txt(CMS_SignerInfo *si, const char *attrname, int type, const void *bytes, int len) argument
191 CMS_unsigned_get0_data_by_OBJ(CMS_SignerInfo *si, ASN1_OBJECT *oid, int lastpos, int type) argument
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/threads/
H A Dth-lock.c91 static void irix_locking_callback(int mode, int type, char *file, int line);
92 static void solaris_locking_callback(int mode, int type, char *file,
94 static void win32_locking_callback(int mode, int type, char *file, int line);
95 static void pthreads_locking_callback(int mode, int type, char *file,
144 void win32_locking_callback(int mode, int type, char *file, int line) argument
147 WaitForSingleObject(lock_cs[type], INFINITE);
149 ReleaseMutex(lock_cs[type]);
209 void solaris_locking_callback(int mode, int type, char *file, int line) argument
215 (type & CRYPTO_READ) ? "r" : "w", file, line);
219 if (CRYPTO_LOCK_SSL_CERT == type)
301 irix_locking_callback(int mode, int type, char *file, int line) argument
360 pthreads_locking_callback(int mode, int type, char *file, int line) argument
[all...]
/freebsd-10.1-release/crypto/heimdal/lib/asn1/
H A Dgen_free.c47 switch (t->type) {
50 free_type (name, t->symbol->type, preserve);
80 if ((t->type == TSequence || t->type == TChoice) && preserve)
83 if(t->type == TChoice)
94 if(t->type == TChoice)
98 t->type == TChoice ? "u." : "", m->gen_name) < 0 || s == NULL)
102 free_type (s, m->type, FALSE);
109 if(t->type == TChoice)
113 if(t->type
[all...]
H A Dasn1parse.y76 Type *type;
175 %type <constant> SignedNumber
176 %type <constant> Class tagenv
178 %type <value> Value
179 %type <value> BuiltinValue
180 %type <value> IntegerValue
181 %type <value> BooleanValue
182 %type <value> ObjectIdentifierValue
183 %type <value> CharacterStringValue
184 %type <valu
[all...]
/freebsd-10.1-release/sys/dev/sio/
H A Dsio_pci.c64 u_int32_t type; member in struct:pci_ids
95 u_int32_t type; local
98 type = pci_get_devid(dev);
100 while (id->type && id->type != type)
111 u_int32_t type; local
114 type = pci_get_devid(dev);
116 while (id->type && id->type !
[all...]
/freebsd-10.1-release/sys/netinet/
H A Dip_icmp.h53 u_char icmp_type; /* type of message, see below */
54 u_char icmp_code; /* type sub code */
64 u_char icmp_type; /* type of message, see below */
65 u_char icmp_code; /* type sub code */
141 * Definition of type and code field values.
201 #define ICMP_INFOTYPE(type) \
202 ((type) == ICMP_ECHOREPLY || (type) == ICMP_ECHO || \
203 (type) == ICMP_ROUTERADVERT || (type)
[all...]
/freebsd-10.1-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_grammar.y140 %type <l_node> d_expression
141 %type <l_node> d_program
142 %type <l_node> d_type
144 %type <l_node> translation_unit
145 %type <l_node> external_declaration
146 %type <l_node> inline_definition
147 %type <l_node> translator_definition
148 %type <l_node> translator_member_list
149 %type <l_node> translator_member
150 %type <l_nod
[all...]
/freebsd-10.1-release/contrib/apr-util/include/
H A Dapu.hnw54 #define APU_DECLARE(type) type
61 #define APU_DECLARE_NONSTD(type) type
66 * @fn APU_DECLARE_DATA type apr_variable;
67 * @note APU_DECLARE_DATA extern type apr_variable; syntax is required for
/freebsd-10.1-release/contrib/libstdc++/include/ext/pb_ds/detail/basic_tree_policy/
H A Dbasic_tree_policy_base.hpp76 key_type>::type>::other::const_reference
82 value_type>::type>::other::const_reference
88 value_type>::type>::other::reference
94 value_type>::type>::other::const_pointer
133 key_type>::type>::other::const_reference
139 value_type>::type>::other::const_reference
145 value_type>::type>::other::reference
151 value_type>::type>::other::const_pointer
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h120 // if constructing with a given type, is_regex cannot be true since we are
121 // giving an exact type to match
122 TypeNameSpecifierImpl (lldb::TypeSP type) : argument
126 if (type)
128 m_type.m_type_name.assign(type->GetName().GetCString());
129 m_type.m_type_pair.SetType(type);
133 TypeNameSpecifierImpl (ClangASTType type) : argument
137 if (type.IsValid())
139 m_type.m_type_name.assign(type.GetConstTypeName().GetCString());
140 m_type.m_type_pair.SetType(type);
[all...]
/freebsd-10.1-release/crypto/heimdal/appl/telnet/libtelnet/
H A Dauth.c178 findauthenticator(int type, int way) argument
182 while (ap->type && (ap->type != type || ap->way != way))
184 return(ap->type ? ap : 0);
198 while (ap->type) {
200 i_support |= typemask(ap->type);
202 printf(">>>%s: I support auth type %d %d\r\n",
204 ap->type, ap->way);
207 printf(">>>%s: Init failed: auth type
226 getauthmask(char *type, int *maskp) argument
245 auth_enable(char *type) argument
251 auth_disable(char *type) argument
257 auth_onoff(char *type, int on) argument
[all...]
/freebsd-10.1-release/include/
H A Dstddef.h62 #define offsetof(type, member) __offsetof(type, member)
/freebsd-10.1-release/lib/libc/rpc/
H A Dnetname.c63 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
65 #define TYPE_SIGNED(type) (((type) -1) < 0)
69 ** Subtract one for the sign bit if the type is signed;
71 ** add one more for a minus sign if the type is signed.
73 #define INT_STRLEN_MAXIMUM(type) \
74 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + 1 + TYPE_SIGNED(type))
[all...]
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dasm_linkage.h64 .type x, @function; \
72 .type x, @function; \
/freebsd-10.1-release/sys/dev/mxge/
H A Dmcp_gen_header.h73 unsigned mcp_globals; /* pointer to mcp-type specific structure */
91 #define MCP_GEN_HEADER_DECL(type, version_str, global_ptr) \
94 (type), \
/freebsd-10.1-release/sys/ia64/include/
H A Dstdarg.h54 #define va_arg(ap, type) \
55 __builtin_va_arg((ap), type)
/freebsd-10.1-release/sys/libkern/
H A Dstrdup.c41 strdup(const char *string, struct malloc_type *type) argument
47 copy = malloc(len, type, M_WAITOK);
H A Dstrndup.c41 strndup(const char *string, size_t maxlen, struct malloc_type *type) argument
47 copy = malloc(len, type, M_WAITOK);
/freebsd-10.1-release/sys/xen/interface/
H A Dcallback.h50 * feature is enabled. Do not use this callback type in new code.
85 uint16_t type; member in struct:callback_register
100 uint16_t type; member in struct:callback_unregister
/freebsd-10.1-release/usr.sbin/amd/include/
H A Daux_conf.h20 #define MOUNT_TRAP(type, mnt, flags, mnt_data) mount(type, mnt->mnt_dir, flags, mnt_data)
32 /* umount(8) executable path, for type:=program */
/freebsd-10.1-release/contrib/gdb/gdb/
H A Dlanguage.c93 static struct type *unk_lang_create_fundamental_type (struct objfile *, int);
95 static void unk_lang_print_type (struct type *, char *, struct ui_file *,
98 static int unk_lang_val_print (struct type *, char *, int, CORE_ADDR,
109 /* The current (default at startup) state of type and range checking.
138 /* The "set language/type/range" commands all put stuff in these
145 static char *type; variable
243 /* Show command. Display a warning if the type setting does
250 "Warning: the current type check setting does not match the language.\n");
253 /* Set command. Change the setting for type checking. */
257 if (strcmp (type, "o
933 struct type *type; local
1229 unk_lang_print_type(struct type *type, char *varstring, struct ui_file *stream, int show, int level) argument
1236 unk_lang_val_print(struct type *type, char *valaddr, int embedded_offset, CORE_ADDR address, struct ui_file *stream, int format, int deref_ref, int recurse, enum val_prettyprint pretty) argument
[all...]

Completed in 293 milliseconds

1234567891011>>