Searched refs:type (Results 276 - 300 of 4849) sorted by relevance

<<11121314151617181920>>

/freebsd-10.0-release/contrib/binutils/ld/
H A Dldexp.h51 node_type type; member in union:etree_union
53 node_type type; member in struct:etree_union::__anon621
58 node_type type; member in struct:etree_union::__anon622
64 node_type type; member in struct:etree_union::__anon623
70 node_type type; member in struct:etree_union::__anon624
74 node_type type; member in struct:etree_union::__anon625
78 node_type type; member in struct:etree_union::__anon626
83 node_type type; member in struct:etree_union::__anon627
88 node_type type; member in struct:etree_union::__anon628
/freebsd-10.0-release/contrib/ldns/ldns/
H A Drdata.h70 /** nsec type codes */
72 /** a RR type */
89 /** variable length any type rdata where the length
135 * the (16-bit) size field. To correctly parse it, use the type
136 * specified in the (16-bit) type field with a value from \ref ldns_rdf_type.
142 /** The type of the data */
164 * \param[in] type the new type
167 void ldns_rdf_set_type(ldns_rdf *rd, ldns_rdf_type type);
187 * returns the type o
[all...]
/freebsd-10.0-release/contrib/opie/
H A Dpopen.c105 FILE *ftpd_popen FUNCTION((program, type), char *program AND char *type) argument
112 if ((*type != 'r' && *type != 'w') || type[1])
148 if (*type == 'r') {
168 if (*type == 'r') {
169 iop = fdopen(pipe_fd = pdes[0], type);
172 iop = fdopen(pipe_fd = pdes[1], type);
/freebsd-10.0-release/crypto/openssl/
H A De_os2.h281 # define OPENSSL_IMPLEMENT_GLOBAL(type,name,value) \
282 type *_shadow_##name(void) \
283 { static type _hide_##name=value; return &_hide_##name; }
284 # define OPENSSL_DECLARE_GLOBAL(type,name) type *_shadow_##name(void)
287 # define OPENSSL_IMPLEMENT_GLOBAL(type,name,value) OPENSSL_GLOBAL type _shadow_##name=value;
288 # define OPENSSL_DECLARE_GLOBAL(type,name) OPENSSL_EXPORT type _shadow_##name
/freebsd-10.0-release/sys/kern/
H A Dvfs_acl.c32 * Type-specific routines go into subr_acl_<type>.c.
63 acl_type_t type, struct acl *aclp);
65 acl_type_t type, struct acl *aclp);
67 acl_type_t type, struct acl *aclp);
116 * calling these syscalls (libc) expects basing on "type" argument - if it's
125 acl_copyin(void *user_acl, struct acl *kernel_acl, acl_type_t type) argument
130 switch (type) {
149 acl_copyout(struct acl *kernel_acl, void *user_acl, acl_type_t type) argument
154 switch (type) {
176 * Convert "old" type
182 acl_type_unold(int type) argument
208 vacl_set_acl(struct thread *td, struct vnode *vp, acl_type_t type, struct acl *aclp) argument
244 vacl_get_acl(struct thread *td, struct vnode *vp, acl_type_t type, struct acl *aclp) argument
274 vacl_delete(struct thread *td, struct vnode *vp, acl_type_t type) argument
301 vacl_aclcheck(struct thread *td, struct vnode *vp, acl_type_t type, struct acl *aclp) argument
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dcp-support.h37 struct type;
68 extern struct type *cp_lookup_rtti_type (const char *name,
107 extern struct type *cp_lookup_nested_type (struct type *parent_type,
114 struct type *cp_lookup_transparent_type (const char *name);
H A Di386-nat.c185 region of LEN bytes for accesses of type TYPE. LEN is assumed to
187 static unsigned i386_length_and_rw_bits (int len, enum target_hw_bp_type type);
192 access type of the region to be watched by this watchpoint. Return
200 type of the region watched by this watchpoint. Return 0 on
207 ADDR whose length is LEN for accesses of type TYPE. Return 0 on
213 enum target_hw_bp_type type);
248 when maint_show_dr is non-zero. To set that up, type "maint
253 int len, enum target_hw_bp_type type)
259 printf_unfiltered (" (addr=%lx, len=%d, type=%s)",
263 type
252 i386_show_dr(const char *func, CORE_ADDR addr, int len, enum target_hw_bp_type type) argument
289 i386_length_and_rw_bits(int len, enum target_hw_bp_type type) argument
436 i386_handle_nonaligned_watchpoint(i386_wp_op_t what, CORE_ADDR addr, int len, enum target_hw_bp_type type) argument
509 i386_insert_watchpoint(CORE_ADDR addr, int len, int type) argument
533 i386_remove_watchpoint(CORE_ADDR addr, int len, int type) argument
[all...]
/freebsd-10.0-release/contrib/libstdc++/include/ext/pb_ds/detail/
H A Dpriority_queue_base_dispatch.hpp67 typedef pairing_heap_< Value_Type, Cmp_Fn, Allocator> type; typedef in struct:pb_ds::detail::priority_queue_base_dispatch
73 typedef binomial_heap_< Value_Type, Cmp_Fn, Allocator> type; typedef in struct:pb_ds::detail::priority_queue_base_dispatch
79 typedef rc_binomial_heap_< Value_Type, Cmp_Fn, Allocator> type; typedef in struct:pb_ds::detail::priority_queue_base_dispatch
85 typedef binary_heap_< Value_Type, Cmp_Fn, Allocator> type; typedef in struct:pb_ds::detail::priority_queue_base_dispatch
91 typedef thin_heap_< Value_Type, Cmp_Fn, Allocator> type; typedef in struct:pb_ds::detail::priority_queue_base_dispatch
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DFormatCache.h67 GetEntry (const ConstString& type);
73 GetSummary (const ConstString& type,lldb::TypeSummaryImplSP& summary_sp);
76 GetSynthetic (const ConstString& type,lldb::SyntheticChildrenSP& synthetic_sp);
79 SetSummary (const ConstString& type,lldb::TypeSummaryImplSP& summary_sp);
82 SetSynthetic (const ConstString& type,lldb::SyntheticChildrenSP& synthetic_sp);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DAuxVector.h37 uint64_t type; member in struct:AuxVector::Entry
40 Entry() : type(0), value(0) { }
43 /// Constants describing the type of entry.
91 FindEntry(EntryType type) const;
95 return GetEntryName(static_cast<EntryType>(entry.type));
99 GetEntryName(EntryType type);
/freebsd-10.0-release/contrib/ofed/libsdp/src/
H A Dsocket.c36 library is available. Eventually we may want to add the same type
88 int type,
108 SOCK_STREAM == type) {
134 fprintf(fd, "SOCKET: <%s> domain <%d> type <%d> protocol <%d>\n",
135 program_invocation_short_name, domain, type, protocol);
143 call[1] = type;
164 return orig_socket(domain, type, protocol);
85 socket( int domain, int type, int protocol ) argument
/freebsd-10.0-release/lib/libkse/thread/
H A Dthr_mattr_kind_np.c74 _pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type) argument
77 if (attr == NULL || *attr == NULL || type >= PTHREAD_MUTEX_TYPE_MAX) {
81 (*attr)->m_type = type;
88 _pthread_mutexattr_gettype(pthread_mutexattr_t *attr, int *type) argument
96 *type = (*attr)->m_type;
/freebsd-10.0-release/sys/arm/arm/
H A Dbootconfig.c54 get_bootconf_option(opts, opt, type, result)
57 int type;
77 if ((type & BOOTOPT_TYPE_MASK) == BOOTOPT_TYPE_BOOLEAN && *ptr == '!') {
88 || (*ptr != '=' && ((type & BOOTOPT_TYPE_MASK) == BOOTOPT_TYPE_BOOLEAN))) {
96 switch(type & BOOTOPT_TYPE_MASK) {
/freebsd-10.0-release/sys/i386/include/
H A Dsmapi.h72 } type; member in struct:smapi_bios_parameter
83 #define cmd_func type.in.func
84 #define cmd_sub_func type.in.sub_func
85 #define rsp_rc type.out.rc
86 #define rsp_sub_rc type.out.sub_rc
/freebsd-10.0-release/sys/powerpc/include/
H A Ddb_machdep.h65 #define IS_BREAKPOINT_TRAP(type, code) ((type) == T_BREAKPOINT)
69 #define IS_WATCHPOINT_TRAP(type, code) ((type) == T_WATCHPOINT)
71 #define IS_WATCHPOINT_TRAP(type, code) 0
/freebsd-10.0-release/sys/xen/interface/
H A Darch-powerpc.h30 #define ___DEFINE_XEN_GUEST_HANDLE(name, type) \
33 type *p; \
36 #define __DEFINE_XEN_GUEST_HANDLE(name, type) \
37 ___DEFINE_XEN_GUEST_HANDLE(name, type); \
38 ___DEFINE_XEN_GUEST_HANDLE(const_##name, const type)
/freebsd-10.0-release/sys/xen/interface/io/
H A Dfbif.h36 /* Event type 1 currently not used */
46 uint8_t type; /* XENFB_TYPE_UPDATE */ member in struct:xenfb_update
61 uint8_t type; /* XENFB_TYPE_RESIZE */ member in struct:xenfb_resize
73 uint8_t type; member in union:xenfb_out_event
99 uint8_t type; /* XENFB_TYPE_UPDATE_PERIOD */ member in struct:xenfb_refresh_period
108 uint8_t type; member in union:xenfb_in_event
H A Dkbdif.h37 /* Event type 2 currently not used */
50 uint8_t type; /* XENKBD_TYPE_MOTION */ member in struct:xenkbd_motion
58 uint8_t type; /* XENKBD_TYPE_KEY */ member in struct:xenkbd_key
65 uint8_t type; /* XENKBD_TYPE_POS */ member in struct:xenkbd_position
75 uint8_t type; member in union:xenkbd_in_event
94 uint8_t type; member in union:xenkbd_out_event
/freebsd-10.0-release/usr.bin/hesinfo/
H A Dhesinfo.c35 char **list, **p, *bindname, *name, *type; local
53 fprintf(stderr, "usage: hesinfo [-bl] name type\n");
59 type = argv[optind + 1];
71 printf("hes_to_bind(%s, %s) expands to\n", name, type);
72 bindname = hesiod_to_bind(context, name, type);
91 list = hesiod_resolve(context, name, type);
/freebsd-10.0-release/contrib/dtc/
H A Ddtc-parser.y75 %type <data> propdata
76 %type <data> propdataprefix
77 %type <re> memreserve
78 %type <re> memreserves
79 %type <array> arrayprefix
80 %type <data> bytestring
81 %type <prop> propdef
82 %type <proplist> proplist
84 %type <node> devicetree
85 %type <nod
[all...]
/freebsd-10.0-release/contrib/gcc/cp/
H A Dfriend.c39 is_friend (tree type, tree supplicant) argument
45 if (supplicant == NULL_TREE || type == NULL_TREE)
53 tree list = DECL_FRIENDLIST (TYPE_MAIN_DECL (type));
79 /* It's a type. */
81 if (same_type_p (supplicant, type))
84 list = CLASSTYPE_FRIEND_CLASSES (TREE_TYPE (TYPE_MAIN_DECL (type)));
119 return is_friend (type, context);
124 /* Add a new friend to the friends of the aggregate type TYPE.
132 add_friend (tree type, tree decl, bool complain) argument
142 typedecl = TYPE_MAIN_DECL (type);
202 make_friend_class(tree type, tree friend_type, bool complain) argument
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/asn1/
H A Dasn1.h168 #define DECLARE_ASN1_SET_OF(type) /* filled in by mkstack.pl */
169 #define IMPLEMENT_ASN1_SET_OF(type) /* nothing, no longer needed */
234 * type.
237 /* This is the base type that holds just about everything :-) */
241 int type; member in struct:asn1_string_st
243 /* The value of the following field depends on the type being
251 * encoding of an ASN1 type. This is useful to get round
262 /* Used with ASN1 LONG type: if a long is set to this it is omitted */
302 #define DECLARE_ASN1_FUNCTIONS(type) DECLARE_ASN1_FUNCTIONS_name(type, typ
523 int type; member in struct:asn1_type_st
[all...]
/freebsd-10.0-release/contrib/texinfo/makeinfo/
H A Dinsertion.c90 /* Return the type of the current insertion. */
182 push_insertion (enum insertion_type type, char *item_function)
189 new->insertion = type;
221 enumerated type. */
223 insertion_type_pname (enum insertion_type type)
225 if ((int) type < (int) bad_type)
227 if (type == rawdocbook)
229 else if (type == rawhtml)
231 else if (type == rawxml)
233 else if (type
181 push_insertion(enum insertion_type type, char *item_function) argument
222 insertion_type_pname(enum insertion_type type) argument
267 is_in_insertion_of_type(int type) argument
286 defun_insertion(enum insertion_type type) argument
330 start_enumerating(int at, int type) argument
381 char type; local
420 begin_insertion(enum insertion_type type) argument
958 end_insertion(int type) argument
1579 do_enumeration(int type, char *default_string) argument
2057 int type; local
[all...]
/freebsd-10.0-release/contrib/nvi/common/
H A Dmem.h13 #define CHECK_TYPE(type, var) \
14 type L__lp __attribute__((unused)) = var;
16 #define CHECK_TYPE(type, var)
22 #define BINC_GOTO(sp, type, lp, llen, nlen) { \
23 CHECK_TYPE(type *, lp) \
39 #define BINC_RET(sp, type, lp, llen, nlen) { \
40 CHECK_TYPE(type *, lp) \
62 #define GET_SPACE_GOTO(sp, type, bp, blen, nlen) { \
63 CHECK_TYPE(type *, bp) \
68 BINC_GOTO(sp, type, b
[all...]
/freebsd-10.0-release/usr.bin/rpcgen/
H A Drpc_util.c124 findit(definition *def, const char *type) argument
126 return (streq(def->def_name, type));
130 fixit(const char *type, const char *orig) argument
134 def = (definition *) FINDVAL(defined, type, findit);
153 fixtype(const char *type) argument
155 return (fixit(type, type));
159 stringfix(const char *type) argument
161 if (streq(type, "string")) {
164 return (type);
169 ptype(const char *prefix, const char *type, int follow) argument
188 typedefed(definition *def, const char *type) argument
198 isvectordef(const char *type, relation rel) argument
438 add_type(int len, const char *type) argument
462 find_type(const char *type) argument
[all...]

Completed in 204 milliseconds

<<11121314151617181920>>