Searched refs:how (Results 1 - 25 of 396) sorted by relevance

1234567891011>>

/macosx-10.10.1/zlib-55/zlib/contrib/blast/
H A Dblast.h34 typedef unsigned (*blast_in)(void *how, unsigned char **buf);
35 typedef int (*blast_out)(void *how, unsigned char *buf, unsigned len);
48 * The input function is invoked: len = infun(how, &buf), where buf is set by
54 * The output function is invoked: err = outfun(how, buf, len), where the bytes
/macosx-10.10.1/OpenSSL098-52/src/VMS/
H A Dtest-includes.com1 $! Quick script to check how well including individual header files works
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dtok822_rewrite.c9 /* TOK822 *tok822_rewrite(addr, how)
11 /* char *how;
43 TOK822 *tok822_rewrite(TOK822 *addr, const char *how) argument
59 rewrite_clnt(how, vstring_str(input_ext_form), canon_ext_form);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/include/
H A Dconcept.inc2 Description of the concepts used in keyword indices and how
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2toc/include/
H A Dconcept.inc2 Description of the concepts used in tables of contents and how
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/include/
H A Dconcept.inc3 grammars and how their relate to each other. This is useful
/macosx-10.10.1/postfix-255/postfix/src/postconf/
H A Dpostconf_unused.c63 int how; local
78 for (how = DICT_SEQ_FUN_FIRST;
79 dict->sequence(dict, how, &param_name, &param_value) == 0;
80 how = DICT_SEQ_FUN_NEXT) {
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dposix_signals.c16 /* int sigprocmask(how, set, old)
17 /* int how;
58 int sigprocmask(int how, sigset_t *set, sigset_t *old) argument
62 if (how == SIG_BLOCK)
64 else if (how == SIG_SETMASK)
66 else if (how == SIG_UNBLOCK) {
/macosx-10.10.1/smb-759.0/include/netsmb/
H A Dupi_mbuf.h69 int mbuf_gethdr(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf);
70 int mbuf_get(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf);
71 int mbuf_getcluster(mbuf_how_t how, mbuf_type_t type, size_t size, mbuf_t *mbuf);
72 int mbuf_attachcluster(mbuf_how_t how, mbuf_type_t type,
/macosx-10.10.1/swig-12/Lib/ocaml/
H A Dtypemaps.i213 %define %char_ptr_in(how)
214 %typemap(how) char *, signed char *, unsigned char * {
215 /* %typemap(how) char * ... */
219 %typemap(how) char [ANY], signed char [ANY], unsigned char [ANY] {
220 /* %typemap(how) char [ANY] ... */
231 %define %char_ptr_out(how)
232 %typemap(how)
238 %typemap(how)
249 %define %swigtype_ptr_in(how)
250 %typemap(how) SWIGTYP
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/linux/SeccompFilters/
H A DSigprocmaskSyscall.cpp44 int how = mcontext.gregs[REG_ARG0]; local
51 if (how == SIG_SETMASK)
/macosx-10.10.1/ruby-106/ruby/symbian/
H A Dmissing-pips.c12 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
22 int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset) argument
/macosx-10.10.1/xnu-2782.1.97/security/
H A Dmac_alloc.h45 void * mac_kalloc (vm_size_t size, int how);
66 void * mac_zalloc (zone_t zone, int how);
H A Dmac_alloc.c54 mac_kalloc(vm_size_t size, int how) argument
57 if (how == M_WAITOK)
155 mac_zalloc(zone_t zone, int how) argument
158 if (how == M_WAITOK)
/macosx-10.10.1/CPANInternal-159.1/Data-Dump-1.21/t/
H A Dregexp.t16 how do this look
32 how do this look
/macosx-10.10.1/ICU-531.30/icuSources/samples/
H A Dreadme.txt7 break - demonstrates how to use BreakIterators in C and C++.
11 case - demonstrates how to do Unicode case conversion in C and C++.
29 strsrch - demonstrates how to search for patterns in Unicode text using the usearch interface.
33 uciter8.c - demonstrates how to leniently read 8-bit Unicode text.
/macosx-10.10.1/sudo-73/src/
H A Dsigaction.c111 sigprocmask(how, set, oset)
112 int how;
122 switch (how) {
/macosx-10.10.1/smb-759.0/lib/smb/
H A Dmbuf.c93 * how - How to create the mbuf, always MBUF_WAITOK in userland.
101 int smb_mbuf_get(uint32_t how, uint32_t type, mbuf_t *mbuf, size_t maxlen) argument
105 if ((type != MBUF_TYPE_DATA) || (how != MBUF_WAITOK))
149 * how - How to create the mbuf, always MBUF_WAITOK in userland.
155 int mbuf_gethdr(uint32_t how, uint32_t type, mbuf_t *mbuf) argument
157 int error = smb_mbuf_get(how, type, mbuf, getpagesize());
170 * how - How to create the mbuf, always MBUF_WAITOK in userland.
176 int mbuf_get(uint32_t how, uint32_t type, mbuf_t *mbuf) argument
178 return smb_mbuf_get(how, type, mbuf, getpagesize());
189 * how
197 mbuf_getcluster(uint32_t how, uint32_t type, size_t size, mbuf_t *mbuf) argument
232 mbuf_attachcluster(uint32_t how, uint32_t type, mbuf_t *mbuf, void * extbuf, void (*extfree)(caddr_t , size_t, caddr_t), size_t extsize, caddr_t extarg) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dkpi_mbuf.h362 @param how Blocking or non-blocking.
367 extern errno_t mbuf_get(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf);
374 @param how Blocking or non-blocking.
379 extern errno_t mbuf_gethdr(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf);
388 @param how Blocking or non-blocking.
407 extern errno_t mbuf_attachcluster(mbuf_how_t how, mbuf_type_t type,
421 @param how Blocking or non-blocking.
434 extern errno_t mbuf_alloccluster(mbuf_how_t how, size_t *size, caddr_t *addr);
454 @param how Blocking or non-blocking.
474 extern errno_t mbuf_getcluster(mbuf_how_t how, mbuf_type_
[all...]
/macosx-10.10.1/screen-22/screen/
H A Dattacher.c113 Attach(how)
114 int how;
121 debug2("Attach: how=%d, tty=%s\n", how, attach_tty);
124 while ((how == MSG_ATTACH || how == MSG_CONT) && multiattach)
175 how = MSG_ATTACH;
183 if ((how == MSG_ATTACH || how == MSG_CONT) && multiattach)
197 m.type = how;
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkpi_mbuf.c99 errno_t mbuf_get(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf) argument
102 *mbuf = m_get(how, type);
107 errno_t mbuf_gethdr(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf) argument
110 *mbuf = m_gethdr(how, type);
116 mbuf_attachcluster(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf, argument
124 extfree, extsize, extarg, how)) == NULL)
131 mbuf_alloccluster(mbuf_how_t how, size_t *size, caddr_t *addr) argument
142 if (*size <= MCLBYTES && (*addr = m_mclalloc(how)) != NULL)
145 (*addr = m_bigalloc(how)) != NULL)
148 (*addr = m_16kalloc(how)) !
177 mbuf_getcluster(mbuf_how_t how, mbuf_type_t type, size_t size, mbuf_t* mbuf) argument
221 mbuf_mclget(mbuf_how_t how, mbuf_type_t type, mbuf_t *mbuf) argument
250 mbuf_getpacket(mbuf_how_t how, mbuf_t *mbuf) argument
303 mbuf_copym(const mbuf_t src, size_t offset, size_t len, mbuf_how_t how, mbuf_t *new_mbuf) argument
312 mbuf_dup(const mbuf_t src, mbuf_how_t how, mbuf_t *new_mbuf) argument
320 mbuf_prepend(mbuf_t *orig, size_t len, mbuf_how_t how) argument
328 mbuf_split(mbuf_t src, size_t offset, mbuf_how_t how, mbuf_t *new_mbuf) argument
859 mbuf_tag_allocate( mbuf_t mbuf, mbuf_tag_id_t id, mbuf_tag_type_t type, size_t length, mbuf_how_t how, void** data_p) argument
971 mbuf_add_drvaux(mbuf_t mbuf, mbuf_how_t how, u_int32_t family, u_int32_t subfamily, size_t length, void **data_p) argument
1078 mbuf_allocpacket(mbuf_how_t how, size_t packetlen, unsigned int *maxchunks, mbuf_t *mbuf) argument
1106 mbuf_allocpacket_list(unsigned int numpkts, mbuf_how_t how, size_t packetlen, unsigned int *maxchunks, mbuf_t *mbuf) argument
1170 mbuf_copyback( mbuf_t m, size_t off, size_t len, const void *data, mbuf_how_t how) argument
[all...]
/macosx-10.10.1/ksh-23/ksh/src/cmd/INIT/
H A Dldd.cygwin.i3862 : cygwin.i386 ldd -- how many ways does this confirm the windows bias?
/macosx-10.10.1/ruby-106/ruby/lib/net/
H A Dhttps.rb8 See Net::HTTP for details on how to make HTTPS connections.
/macosx-10.10.1/ruby-106/ruby/missing/
H A Dclose.c44 ruby_shutdown(int s, int how) argument
48 s = shutdown(s, how);
/macosx-10.10.1/groff-38/groff/src/libs/libgroff/
H A Dsymbol.cpp78 symbol::symbol(const char *p, int how) argument
104 if (how == MUST_ALREADY_EXIST) {
133 if (how == DONT_STORE) {

Completed in 176 milliseconds

1234567891011>>