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

1234

/haiku-fatelf/src/bin/coreutils/man/
H A Duptime.x2 uptime \- tell how long the system has been running
/haiku-fatelf/src/kits/storage/sniffer/
H A DDisjList.cpp23 DisjList::SetCaseInsensitive(bool how) { argument
24 fCaseInsensitive = how;
/haiku-fatelf/src/libs/posix_error_mapper/
H A Dsignal.cpp13 (int how, const sigset_t *set, sigset_t *oldSet),
14 return B_TO_POSITIVE_ERROR(sReal_pthread_sigmask(how, set, oldSet));
/haiku-fatelf/src/system/libroot/posix/signal/
H A Dset_signal_mask.cpp23 __sigprocmask_beos(int how, const sigset_t_beos* beosSet, argument
26 RETURN_AND_SET_ERRNO(__pthread_sigmask_beos(how, beosSet, beosOldSet));
31 __pthread_sigmask_beos(int how, const sigset_t_beos* beosSet, argument
41 status_t error = _kern_set_signal_mask(how, beosSet != NULL ? &set : NULL,
55 __sigprocmask(int how, const sigset_t* set, sigset_t* oldSet) argument
57 RETURN_AND_SET_ERRNO(_kern_set_signal_mask(how, set, oldSet));
62 __pthread_sigmask(int how, const sigset_t* set, sigset_t* oldSet) argument
64 return _kern_set_signal_mask(how, set, oldSet);
/haiku-fatelf/src/libs/compat/freebsd_network/
H A Dmbuf.c36 m_to_oc_flags(int how) argument
38 if (how & M_NOWAIT)
67 construct_ext_sized_mbuf(struct mbuf *memoryBuffer, int how, int size) argument
85 memoryBuffer->m_ext.ext_buf = object_cache_alloc(cache, m_to_oc_flags(how));
102 construct_ext_mbuf(struct mbuf *memoryBuffer, int how) argument
104 return construct_ext_sized_mbuf(memoryBuffer, how, MCLBYTES);
109 construct_pkt_mbuf(int how, struct mbuf *memoryBuffer, short type, int flags) argument
112 if (construct_ext_mbuf(memoryBuffer, how) < 0)
120 m_getcl(int how, short type, int flags) argument
123 (struct mbuf *)object_cache_alloc(sMBufCache, m_to_oc_flags(how));
137 _m_get(int how, short type, int flags) argument
151 m_get(int how, short type) argument
158 m_gethdr(int how, short type) argument
165 m_getjcl(int how, short type, int flags, int size) argument
181 m_clget(struct mbuf *memoryBuffer, int how) argument
190 m_cljget(struct mbuf *memoryBuffer, int how, int size) argument
[all...]
H A Dfbsd_mbuf.c122 m_dup_pkthdr(struct mbuf *to, struct mbuf *from, int how) argument
124 MBUF_CHECKSLEEP(how);
130 return (m_tag_copy_chain(to, from, MBTOM(how)));
145 m_defrag(struct mbuf *m0, int how) argument
150 MBUF_CHECKSLEEP(how);
157 m_final = m_getcl(how, MT_DATA, M_PKTHDR);
159 m_final = m_gethdr(how, MT_DATA);
164 if (m_dup_pkthdr(m_final, m0, how) == 0)
176 m_new = m_getcl(how, MT_DATA, 0);
178 m_new = m_get(how, MT_DAT
342 m_prepend(struct mbuf *m, int len, int how) argument
558 m_collapse(struct mbuf *m0, int how, int maxfrags) argument
724 m_dup(struct mbuf *m, int how) argument
802 m_unshare(struct mbuf *m0, int how) argument
974 m_copypacket(struct mbuf *m, int how) argument
[all...]
H A Dfbsd_mbuf2.c397 m_tag_copy(struct m_tag *t, int how) argument
401 MBUF_CHECKSLEEP(how);
403 p = m_tag_alloc(t->m_tag_cookie, t->m_tag_id, t->m_tag_len, how);
413 if (mac_mbuf_tag_init(p, how) != 0) {
431 m_tag_copy_chain(struct mbuf *to, struct mbuf *from, int how) argument
435 MBUF_CHECKSLEEP(how);
440 t = m_tag_copy(p, how);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dtrim.c41 trim2(const char *s, int how) argument
55 if (how != TRIM_TRAILING)
66 if (how != TRIM_LEADING)
117 if (how != TRIM_TRAILING) {
125 if (how != TRIM_LEADING) {
/haiku-fatelf/headers/private/storage/sniffer/
H A DDisjList.h29 void SetCaseInsensitive(bool how);
/haiku-fatelf/src/apps/switcher/
H A DPanelWindow.cpp90 PanelWindow::_UpdateShowState(uint32 how) argument
92 if ((how == kMsgShow && fShowState >= kMaxShowState)
93 || (how == kMsgHide && fShowState <= kMinShowState))
96 fShowState += how == kMsgShow ? 1 : -1;
147 if ((how == kMsgShow && fShowState < kMaxShowState)
148 || (how == kMsgHide && fShowState > kMinShowState)) {
149 BMessage move(how);
151 } else if (how == kMsgShow) {
H A DPanelWindow.h23 void _UpdateShowState(uint32 how);
/haiku-fatelf/src/libs/compat/freebsd_network/compat/sys/
H A Dmbuf-fbsd.h96 * If a new mbuf must be allocated, how specifies whether to wait.
100 #define M_PREPEND(m, plen, how) do { \
104 int __mhow = (how); \
106 MBUF_CHECKSLEEP(how); \
H A Dmbuf.h20 #define MBTOM(how) (how)
50 #define MGET(m, how, type) ((m) = m_get((how), (type)))
51 #define MGETHDR(m, how, type) ((m) = m_gethdr((how), (type)))
52 #define MCLGET(m, how) m_clget((m), (how))
60 #define MBUF_CHECKSLEEP(how) do { } while (0)
/haiku-fatelf/headers/private/libroot/
H A Dsignal_private.h85 int __pthread_sigmask_beos(int how, const sigset_t_beos* beosSet,
87 int __sigprocmask_beos(int how, const sigset_t_beos* beosSet,
90 int __pthread_sigmask(int how, const sigset_t* set, sigset_t* oldSet);
91 int __sigprocmask(int how, const sigset_t* set, sigset_t* oldSet);
/haiku-fatelf/src/bin/gdb/gdb/
H A Ddwarf2-frame.h38 about a register, leaving how to obtain its value totally
72 enum dwarf2_frame_reg_rule how; member in struct:dwarf2_frame_state_reg
H A Ddwarf2-frame.c292 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_OFFSET;
332 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_OFFSET;
346 fs->regs.reg[reg].how = DWARF2_FRAME_REG_UNDEFINED;
352 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAME_VALUE;
359 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_REG;
425 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_EXP;
434 fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_OFFSET;
514 reg->how = DWARF2_FRAME_REG_RA;
516 reg->how = DWARF2_FRAME_REG_CFA;
601 frame_unwind_address_in_block does just this. It's not clear how
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/ipro1000/
H A Dif_compat.h168 struct mbuf *m_gethdr(int how, int type);
171 #define MGETHDR(mb, how, type) ((mb) = m_gethdr((how), (type)))
173 void m_clget(struct mbuf * mb, int how);
179 #define MCLGET(mb, how) m_clget((mb), (how))
H A Dif_compat.c31 m_gethdr(int how, int type) argument
42 m_clget(struct mbuf * m, int how) argument
/haiku-fatelf/src/libs/zlib/
H A Dgzread.c93 If this is the first time in, allocate required memory. state->how will be
199 state->how = GZIP;
220 state->how = COPY;
229 trailer is verified, state->how is reset to LOOK to look for the next gzip
289 state->how = LOOK; /* ready for next stream, once have is 0 (leave
290 state->direct unchanged to remember how) */
299 file depending on state->how. If state->how is LOOK, then a gzip header is
309 if (state->how == LOOK) { /* look for gzip header */
315 if (state->how
[all...]
H A Dgzguts.h80 /* values for gz_state how */
102 int how; /* 0: get header, 1: copy, 2: decompress */ member in struct:__anon5225
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/marvell88w8363/dev/mwl/
H A Dif_mwlvar.h140 #define MWL_TXDESC_SYNC(txq, ds, how) do { \
141 bus_dmamap_sync((txq)->dma.dd_dmat, (txq)->dma.dd_dmamap, how); \
167 #define MWL_RXDESC_SYNC(sc, ds, how) do { \
168 bus_dmamap_sync((sc)->sc_rxdma.dd_dmat, (sc)->sc_rxdma.dd_dmamap, how);\
/haiku-fatelf/src/libs/edit/
H A Del.c538 const char *how; local
543 how = argv[1];
544 if (strcmp(how, "on") == 0) {
547 } else if (strcmp(how, "off") == 0) {
552 (void) fprintf(el->el_errfile, "edit: Bad value `%s'.\n", how);
/haiku-fatelf/headers/posix/
H A Dsignal.h108 /* for the 'how' arg of sigprocmask() */
235 int sigprocmask(int how, const sigset_t* set, sigset_t* oldSet);
236 int pthread_sigmask(int how, const sigset_t* set, sigset_t* oldSet);
/haiku-fatelf/headers/private/net/
H A Dnet_stack_interface.h33 status_t (*shutdown)(net_socket* socket, int how);
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/marvell88w8335/dev/malo/
H A Dif_malo.h410 #define MALO_TXDESC_SYNC(txq, ds, how) do { \
411 bus_dmamap_sync((txq)->dma.dd_dmat, (txq)->dma.dd_dmamap, how); \
441 #define MALO_RXDESC_SYNC(sc, ds, how) do { \
443 (sc)->malo_rxdma.dd_dmamap, how); \

Completed in 124 milliseconds

1234