Home
last modified time | relevance | path

Searched refs:type (Results 226 – 250 of 9295) sorted by relevance

12345678910>>...372

/freebsd/usr.sbin/ppp/
H A Dvjcomp.c76 int type; in vj_LayerPush() local
84 type = sl_compress_tcp(bp, pip, &bundle->ncp.ipcp.vj.cslc, in vj_LayerPush()
87 log_Printf(LogDEBUG, "vj_LayerWrite: type = %x\n", type); in vj_LayerPush()
88 switch (type) { in vj_LayerPush()
105 log_Printf(LogERROR, "vj_LayerPush: Unknown frame type %x\n", type); in vj_LayerPush()
115 VjUncompressTcp(struct ipcp *ipcp, struct mbuf *bp, u_char type) in VjUncompressTcp() argument
123 if (type == TYPE_UNCOMPRESSED_TCP) { in VjUncompressTcp()
168 u_char type; in vj_LayerPull() local
172 type = TYPE_COMPRESSED_TCP; in vj_LayerPull()
176 type = TYPE_UNCOMPRESSED_TCP; in vj_LayerPull()
[all …]
/freebsd/lib/libc/gen/
H A Dpopen.c64 popen(const char *command, const char *type) in popen() argument
73 cloexec = strchr(type, 'e') != NULL; in popen()
78 if (strchr(type, '+')) { in popen()
80 type = "r+"; in popen()
83 if ((*type != 'r' && *type != 'w') || in popen()
84 (type[1] && (type[1] != 'e' || type[2]))) in popen()
96 if (*type == 'r') { in popen()
97 iop = fdopen(pdes[0], type); in popen()
100 iop = fdopen(pdes[1], type); in popen()
130 if (*type == 'r') { in popen()
/freebsd/contrib/libpcap/
H A Drpcap-protocol.c137 rpcap_createhdr(struct rpcap_header *header, uint8 ver, uint8 type, uint16 value, uint32 length) in rpcap_createhdr() argument
142 header->type = type; in rpcap_createhdr()
185 rpcap_msg_type_string(uint8 type) in rpcap_msg_type_string() argument
187 if (type & RPCAP_MSG_IS_REPLY) { in rpcap_msg_type_string()
188 type &= ~RPCAP_MSG_IS_REPLY; in rpcap_msg_type_string()
189 if (type >= NUM_REPLY_TYPES) in rpcap_msg_type_string()
191 return replies[type]; in rpcap_msg_type_string()
193 if (type >= NUM_REQ_TYPES) in rpcap_msg_type_string()
195 return requests[type]; in rpcap_msg_type_string()
/freebsd/sys/dev/tdfx/
H A Dtdfx_io.h74 #define _IOCV(dir,type,nr,size) \ argument
76 ((type) << _IOC_TYPESHIFT) | \
81 #define _IOV(type,nr) _IOCV(_IOC_NONE,(type),(nr),0) argument
82 #define _IORV(type,nr,size) _IOCV(_IOC_READ,(type),(nr),sizeof(size)) argument
83 #define _IOWV(type,nr,size) _IOCV(_IOC_WRITE,(type),(nr),sizeof(size)) argument
84 #define _IOWRV(type,nr,size) _IOCV(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
/freebsd/crypto/openssl/doc/man3/
H A DASN1_TYPE_get.pod13 void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
14 int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
24 B<ASN1_TYPE> structure can contain any ASN.1 type or constructed type
25 such as a SEQUENCE: it is effectively equivalent to the ASN.1 ANY type.
27 ASN1_TYPE_get() returns the type of I<a> or 0 if it fails.
29 ASN1_TYPE_set() sets the value of I<a> to I<type> and I<value>. This
52 ASN1_TYPE_set1() is determined by the I<type> parameter.
53 If I<type> is B<V_ASN1_NULL> I<value> is ignored. If I<type> is
57 is and B<ASN1_STRING> structure. If I<type> corresponds to a primitive type
59 octets of the type. If I<type> corresponds to a constructed type or
[all …]
/freebsd/contrib/ncurses/ncurses/trace/
H A Dvarargs.c48 #define VA_INT(type) ival = (int) va_arg(ap, type) argument
49 #define VA_FLT(type) fval = va_arg(ap, type) argument
50 #define VA_PTR(type) pval = (char *)va_arg(ap, type) argument
51 #define VA_STR(type) sval = va_arg(ap, type) argument
83 int type = 0; in _nc_varargs() local
101 type = *fmt; in _nc_varargs()
108 if (type == 'l') in _nc_varargs()
110 else if (type == 'Z') in _nc_varargs()
/freebsd/sys/kern/
H A Dsubr_hash.c52 hashinit_flags(int elements, struct malloc_type *type, u_long *hashmask, in hashinit_flags() argument
67 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl), type, in hashinit_flags()
81 hashinit(int elements, struct malloc_type *type, u_long *hashmask) in hashinit() argument
84 return (hashinit_flags(elements, type, hashmask, HASH_WAITOK)); in hashinit()
88 hashdestroy(void *vhashtbl, struct malloc_type *type, u_long hashmask) in hashdestroy() argument
95 "(malloc type %s)", __func__, hashtbl, type->ks_shortdesc)); in hashdestroy()
96 free(hashtbl, type); in hashdestroy()
109 phashinit_flags(int elements, struct malloc_type *type, u_long *nentries, int flags) in phashinit_flags() argument
127 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl), type, in phashinit_flags()
143 phashinit(int elements, struct malloc_type *type, u_long *nentries) in phashinit() argument
[all …]
/freebsd/lib/libnv/tests/
H A Dnvlist_send_recv_test.c100 int type, ctype, fd; in send_nvlist_parent() local
113 ATF_REQUIRE(type == NV_TYPE_BOOL); in send_nvlist_parent()
119 ATF_REQUIRE(type == NV_TYPE_BOOL); in send_nvlist_parent()
125 ATF_REQUIRE(type == NV_TYPE_NUMBER); in send_nvlist_parent()
131 ATF_REQUIRE(type == NV_TYPE_NUMBER); in send_nvlist_parent()
137 ATF_REQUIRE(type == NV_TYPE_NUMBER); in send_nvlist_parent()
143 ATF_REQUIRE(type == NV_TYPE_NUMBER); in send_nvlist_parent()
149 ATF_REQUIRE(type == NV_TYPE_NUMBER); in send_nvlist_parent()
155 ATF_REQUIRE(type == NV_TYPE_NUMBER); in send_nvlist_parent()
161 ATF_REQUIRE(type == NV_TYPE_STRING); in send_nvlist_parent()
[all …]
/freebsd/sys/ufs/ufs/
H A Dufs_quota.c252 int type, int *warn) in chkdqchg() argument
267 quotatypes[type]); in chkdqchg()
292 quotatypes[type]); in chkdqchg()
405 quotatypes[type]); in chkiqchg()
430 quotatypes[type]); in chkiqchg()
560 vpp = &ump->um_quotas[type]; in quotaon()
562 quotaoff1(td, mp, type); in quotaon()
662 cr = ump->um_cred[type]; in quotaoff1()
680 dq = ip->i_dquot[type]; in quotaoff1()
800 switch (type) { in _getquota()
[all …]
/freebsd/crypto/heimdal/admin/
H A Dktutil-commands.in40 type = "string"
55 type = "string"
62 type = "string"
68 type = "-flag"
75 type = "flag"
81 type = "flag"
93 type = "string"
100 type = "string"
169 type = "flag"
174 type = "flag"
[all …]
/freebsd/crypto/heimdal/lib/asn1/
H A Dsymbol.h70 struct type;
78 } type; member
94 struct type *type; member
124 struct type { struct
125 Typetype type; member
128 struct type *subtype; argument
134 typedef struct type Type; argument
140 Type *type; member
157 Type *type; member
/freebsd/sys/contrib/device-tree/src/arm/samsung/
H A Dexynos5422-odroidxu3-common.dtsi64 type = "active";
69 type = "active";
74 type = "active";
90 type = "passive";
95 type = "passive";
153 type = "active";
158 type = "active";
163 type = "active";
226 type = "active";
231 type = "active";
[all …]
/freebsd/contrib/libucl/src/
H A Ducl_schema.c124 if (cur->type == UCL_ARRAY) { in ucl_schema_validate_dependencies()
161 if (elt->type == UCL_OBJECT && in ucl_schema_validate_object()
314 if ((elt->type == UCL_FLOAT || elt->type == UCL_INT) && in ucl_schema_validate_number()
332 else if ((elt->type == UCL_FLOAT || elt->type == UCL_INT) && in ucl_schema_validate_number()
348 else if ((elt->type == UCL_FLOAT || elt->type == UCL_INT) && in ucl_schema_validate_number()
382 if (elt->type == UCL_INT && in ucl_schema_validate_string()
613 if (type == NULL) { in ucl_schema_type_is_allowed()
618 if (type->type == UCL_ARRAY) { in ucl_schema_type_is_allowed()
626 else if (type->type == UCL_STRING) { in ucl_schema_type_is_allowed()
633 if (obj->type != t) { in ucl_schema_type_is_allowed()
[all …]
/freebsd/crypto/openssl/crypto/x509/
H A Dx509_lu.c163 ret = ((*a)->type - (*b)->type); in x509_object_cmp()
166 switch ((*a)->type) { in x509_object_cmp()
347 ret->type = tmp->type; in X509_STORE_CTX_get_by_subject()
416 switch (a->type) { in X509_OBJECT_up_ref_count()
443 return a->type; in X509_OBJECT_get_type()
462 switch (a->type) { in x509_object_free_internal()
480 a->type = X509_LU_X509; in X509_OBJECT_set1_X509()
491 a->type = X509_LU_CRL; in X509_OBJECT_set1_X509_CRL()
510 stmp.type = type; in x509_object_idx_cnt()
511 switch (type) { in x509_object_idx_cnt()
[all …]
H A Dx509name.c148 ne = X509_NAME_ENTRY_create_by_OBJ(NULL, obj, type, bytes, len); in X509_NAME_add_entry_by_OBJ()
156 int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, in X509_NAME_add_entry_by_NID() argument
262 int type, in X509_NAME_ENTRY_create_by_NID() argument
294 if (!X509_NAME_ENTRY_set_data(ret, type, bytes, len)) in X509_NAME_ENTRY_create_by_OBJ()
317 int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, in X509_NAME_ENTRY_set_data() argument
324 if ((type > 0) && (type & MBSTRING_FLAG)) in X509_NAME_ENTRY_set_data()
326 len, type, in X509_NAME_ENTRY_set_data()
333 if (type != V_ASN1_UNDEF) { in X509_NAME_ENTRY_set_data()
334 if (type == V_ASN1_APP_CHOOSE) in X509_NAME_ENTRY_set_data()
335 ne->value->type = ASN1_PRINTABLE_type(bytes, len); in X509_NAME_ENTRY_set_data()
[all …]
/freebsd/contrib/netbsd-tests/lib/libcurses/slave/
H A Dcommands.c120 int type; in report_type() local
122 type = return_type; in report_type()
123 if (write(slvpipe[WRITE_PIPE], &type, sizeof(int)) < 0) in report_type()
134 int type; in report_count() local
136 type = ret_count; in report_count()
137 if (write(slvpipe[WRITE_PIPE], &type, sizeof(int)) < 0) in report_count()
167 report_message(int type, const char *status) in report_message() argument
173 if (write(slvpipe[WRITE_PIPE], &type, sizeof(int)) < 0) in report_message()
202 int len, type; in report_nstr() local
215 type = ret_byte; in report_nstr()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSemaKinds.td4278 "type of machine mode does not match type of base type">;
4325 "%diff{type $ which is incompatible with type $|incompatible type}1,2">;
4807 "%diff{of type $ to $|type to parameter type}3,4 for "
5024 "type %0 of non-type template parameter is not a structural type">;
5704 "non-type template parameter type|exception type|explicit specialization|"
6012 "%select{non-struct type|non-class type|non-union type|non-enum "
6013 "type|typedef|type alias|template|type alias template|template "
6018 "%select{non-struct type|non-class type|non-union type|non-enum "
6019 "type|typedef|type alias|template|type alias template|template "
7668 // cast type, %1 is the source type, %2 is the destination type.
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dzfs41 >32 belong 0 type: NONE,
42 >32 belong 1 type: META,
43 >32 belong 2 type: ZFS,
44 >32 belong 3 type: ZVOL,
45 >32 belong 4 type: OTHER,
46 >32 belong 5 type: ANY,
71 >32 lelong 0 type: NONE,
72 >32 lelong 1 type: META,
73 >32 lelong 2 type: ZFS,
74 >32 lelong 3 type: ZVOL,
[all …]
/freebsd/sys/contrib/libnv/
H A Dcnvlist.c72 #define CNVLIST_GET(ftype, type, NVTYPE) \ argument
74 cnvlist_get_##type(const void *cookie) \
81 return (nvpair_get_##type(cookie)); \
94 #define CNVLIST_GET_ARRAY(ftype, type, NVTYPE) \ in CNVLIST_GET() argument
103 return (nvpair_get_##type(cookie, nitemsp)); \ in CNVLIST_GET()
125 #define CNVLIST_TAKE(ftype, type, NVTYPE) \ argument
127 cnvlist_take_##type(void *cookie) \
153 #define CNVLIST_TAKE_ARRAY(ftype, type, NVTYPE) \ argument
155 cnvlist_take_##type(void *cookie, size_t *nitemsp) \
197 #define CNVLIST_FREE(type) \ argument
[all …]
/freebsd/contrib/netbsd-tests/usr.sbin/mtree/
H A Dmtree_d_create.out7 /set type=file nlink=1
8 . type=dir nlink=4
9 a.symlink.1 type=link link=a.file.1
11 type=link link=nonexistent
15 type=link link=b
18 a type=dir nlink=4
28 1 type=dir nlink=2
36 2 type=dir nlink=2
45 b type=dir nlink=2
H A Dnetbsd6_d_create.out7 /set type=file nlink=1
8 . type=dir nlink=4
9 a.symlink.1 type=link link=a.file.1
11 type=link link=nonexistent
15 type=link link=b
18 a type=dir nlink=4
28 1 type=dir nlink=2
36 2 type=dir nlink=2
45 b type=dir nlink=2
/freebsd/contrib/netbsd-tests/ipf/regress/
H A Df71 block in proto icmp from any to any icmp-type echo
2 pass in proto icmp from any to any icmp-type echo
3 block in proto icmp from any to any icmp-type unreach code 3
4 pass in proto icmp from any to any icmp-type unreach code 3
5 block in proto icmp from any to any icmp-type echorep
6 pass in proto icmp from any to any icmp-type echorep
7 pass in proto icmp all icmp-type maskreq keep state
8 pass in proto icmp all icmp-type timest keep state
9 pass in proto icmp all icmp-type inforeq keep state
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Ddecay.h34 using type _LIBCPP_NODEBUG = __decay_t<_Tp>;
40 typedef _LIBCPP_NODEBUG __remove_cv_t<_Up> type;
49 …tional<is_function<_Up>::value, typename add_pointer<_Up>::type, __remove_cv_t<_Up> >::type >::type
50 type;
59 typedef _LIBCPP_NODEBUG typename __decay<_Up, __libcpp_is_referenceable<_Up>::value>::type type;
63 using __decay_t = typename decay<_Tp>::type;
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-opp-witherspoon.dts384 type = <PCA955X_TYPE_GPIO>;
389 type = <PCA955X_TYPE_GPIO>;
394 type = <PCA955X_TYPE_GPIO>;
399 type = <PCA955X_TYPE_GPIO>;
404 type = <PCA955X_TYPE_GPIO>;
409 type = <PCA955X_TYPE_GPIO>;
414 type = <PCA955X_TYPE_GPIO>;
419 type = <PCA955X_TYPE_GPIO>;
424 type = <PCA955X_TYPE_GPIO>;
429 type = <PCA955X_TYPE_GPIO>;
[all …]
/freebsd/sys/contrib/ncsw/Peripherals/FM/Port/
H A Dfm_port.h129 (uint32_t)(((type) == e_FM_PORT_TYPE_RX_10G) ? 8 : \
130 (((type) == e_FM_PORT_TYPE_RX) ? 2 : 0))
134 ((type) == e_FM_PORT_TYPE_RX_10G)) ? 8 : 1 )
137 (uint32_t)(((type) == e_FM_PORT_TYPE_RX_10G) ? 8 : \
138 (((type) == e_FM_PORT_TYPE_RX) ? 1 : 0))
144 ((type) == e_FM_PORT_TYPE_TX) ? 44 : 8)
167 #define DEFAULT_PORT_extraNumOfTasks(type) 0 argument
176 #define DEFAULT_PORT_extraNumOfOpenDmas(type) 0 argument
178 #define DEFAULT_PORT_numOfFifoBufs(type) \ argument
179 (uint32_t) (((type) == e_FM_PORT_TYPE_RX_10G) ? 96 : \
[all …]

12345678910>>...372