Searched refs:set (Results 1 - 25 of 238) sorted by relevance

12345678910

/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dlinker_set.h40 * For ELF, this is done by constructing a separate segment for each set.
47 #define __MAKE_SET(set, sym) \
48 static void const * const __set_##set##_sym_##sym \
49 __section("set_" #set) __used = &sym
54 #define __MAKE_SET(set, sym) extern void const * const (__set_##set##_sym_##sym)
60 #define TEXT_SET(set, sym) __MAKE_SET(set, sym)
61 #define DATA_SET(set, sym) __MAKE_SET(set, sy
[all...]
/haiku/src/system/libroot/posix/signal/
H A Dsigpending.cpp27 sigset_t set; local
28 if (__sigpending(&set) != 0)
31 *beosSet = to_beos_sigset(set);
37 __sigpending(sigset_t* set) argument
39 RETURN_AND_SET_ERRNO(_kern_sigpending(set));
H A Dsigset_accessors.cpp28 __sigemptyset_beos(sigset_t_beos* set) argument
30 *set = (sigset_t_beos)0;
36 __sigfillset_beos(sigset_t_beos* set) argument
38 *set = ~(sigset_t_beos)0;
44 __sigismember_beos(const sigset_t_beos* set, int signal) argument
51 return (*set & SIGNAL_TO_MASK(signal)) != 0 ? 1 : 0;
56 __sigaddset_beos(sigset_t_beos* set, int signal) argument
63 *set |= SIGNAL_TO_MASK(signal);
69 __sigdelset_beos(sigset_t_beos* set, int signal) argument
76 *set
85 __sigemptyset(sigset_t* set) argument
93 __sigfillset(sigset_t* set) argument
101 __sigismember(const sigset_t* set, int signal) argument
113 __sigaddset(sigset_t* set, int signal) argument
126 __sigdelset(sigset_t* set, int signal) argument
[all...]
H A Dsigwaitinfo.cpp11 sigwaitinfo(const sigset_t* set, siginfo_t* info) argument
13 return sigtimedwait(set, info, NULL);
H A Dsigwait.cpp22 // convert the given signal set and call the current version
23 sigset_t set = from_beos_sigset(*beosSet); local
24 int error = __sigwait(&set, _signal);
37 __sigwait(const sigset_t* set, int* _signal) argument
40 status_t error = _kern_sigwait(set, &info, 0, 0);
H A Dset_signal_mask.cpp34 // convert new signal set
35 sigset_t set; local
37 set = from_beos_sigset(*beosSet);
39 // set the mask
41 status_t error = _kern_set_signal_mask(how, beosSet != NULL ? &set : NULL,
46 // convert old signal set back
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, oldSe
[all...]
/haiku/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));
18 WRAPPER_FUNCTION(int, sigwait, (const sigset_t *set, int *signal),
19 return B_TO_POSITIVE_ERROR(sReal_sigwait(set, signal));
/haiku/src/servers/power/
H A Dpower_monitor.h13 #include <set>
22 virtual const std::set<int>&
H A Dlid_monitor.h22 virtual const std::set<int>&
25 std::set<int> fFDs;
H A Dpower_button_monitor.h23 virtual const std::set<int>&
26 std::set<int> fFDs;
/haiku/headers/cpp/
H A Dset.h34 using __STD::set;
H A Dstl.h12 #include <set>
H A Dstl_set.h37 #pragma set woff 1174
38 #pragma set woff 1375
48 class set { class
59 _Rep_type _M_t; // red-black tree representing set
75 set() : _M_t(_Compare(), allocator_type()) {} function in class:set
76 explicit set(const _Compare& __comp, function in class:set
82 set(_InputIterator __first, _InputIterator __last) function in class:set
87 set(_InputIterator __first, _InputIterator __last, const _Compare& __comp, function in class:set
91 set(const value_type* __first, const value_type* __last) function in class:set
95 set(cons function in class:set
100 set(const_iterator __first, const_iterator __last) function in class:set
104 set(const_iterator __first, const_iterator __last, const _Compare& __comp, function in class:set
109 set(const set<_Key,_Compare,_Alloc>& __x) argument
110 operator =(const set<_Key, _Compare, _Alloc>& __x) argument
184 operator ==(const set<_Key,_Compare,_Alloc>& __x, const set<_Key,_Compare,_Alloc>& __y) argument
190 operator <(const set<_Key,_Compare,_Alloc>& __x, const set<_Key,_Compare,_Alloc>& __y) argument
[all...]
/haiku/src/libs/stdc++/legacy/
H A Dsigsetmask.c6 /* Set the current signal mask to the set provided, and return the
17 DEFUN(sigsetmask,(set),
18 int set)
24 if (set != 0) {
H A Dpfstream.cc44 set(ios::badbit);
64 set(ios::badbit);
73 set(ios::badbit);
85 set(ios::badbit);
90 set(ios::badbit);
/haiku/headers/private/libroot/
H A Dsignal_private.h29 to_beos_sigset(sigset_t set) argument
32 sigset_t_beos beosSet = (sigset_t_beos)(set
35 // if SIGBUS is set, set SIGSEGV, since they have the same number in BeOS
36 if ((set & SIGNAL_TO_MASK(SIGBUS)) != 0)
46 sigset_t set = beosSet; local
48 // if SIGSEGV is set, set SIGBUS, since they have the same number in BeOS
49 if ((set & SIGNAL_TO_MASK(SIGSEGV)) != 0)
50 set |
[all...]
/haiku/headers/private/kernel/util/
H A Datomic.h19 atomic_pointer_test_and_set(PointerType** _pointer, const PointerType* set, argument
23 return (PointerType*)atomic_test_and_set((int32*)_pointer, (int32)set,
26 return (PointerType*)atomic_test_and_set64((int64*)_pointer, (int64)set,
33 atomic_pointer_get_and_set(PointerType** _pointer, const PointerType* set) argument
36 return (PointerType*)atomic_get_and_set((int32*)_pointer, (int32)set);
38 return (PointerType*)atomic_get_and_set64((int64*)_pointer, (int64)set);
44 atomic_pointer_set(PointerType** _pointer, const PointerType* set) argument
48 atomic_set((int32*)_pointer, (int32)set);
50 atomic_set64((int64*)_pointer, (int64)set);
/haiku/headers/posix/sys/
H A Dselect.h49 #define FD_ZERO(set) memset((set), 0, sizeof(fd_set))
50 #define FD_SET(fd, set) ((set)->bits[_FD_BITSINDEX(fd)] |= _FD_BIT(fd))
51 #define FD_CLR(fd, set) ((set)->bits[_FD_BITSINDEX(fd)] &= ~_FD_BIT(fd))
52 #define FD_ISSET(fd, set) ((set)->bits[_FD_BITSINDEX(fd)] & _FD_BIT(fd))
/haiku/src/kits/media/
H A DPortPool.h12 #include <set>
28 typedef std::set<port_id> PortSet;
/haiku/headers/private/storage/mime/
H A DSupportingApps.h16 #include <set>
44 std::map<std::string, std::set<std::string> > fSupportedTypes; // app sig => set of supported types
45 std::map<std::string, std::set<std::string> > fSupportingApps; // mime type => set of supporting apps
46 std::map<std::string, std::set<std::string> > fStrandedTypes; // app sig => set of no longer supported types for whom the
/haiku/src/libs/bsd/
H A Dsignal.c23 sigset_t set = mask; local
26 if (sigprocmask(SIG_SETMASK, &set, &oset) < 0)
36 sigset_t set = mask; local
39 if (sigprocmask(SIG_BLOCK, &set, &oset) < 0)
/haiku/src/system/kernel/debug/
H A Ddebug_paranoia.cpp243 out.Print("paranoia create check set: object: %p, "
263 out.Print("paranoia delete check set: object: %p", fObject);
286 mode = "set: ";
371 add_check_set(ParanoiaCheckSet* set) argument
373 int slot = (addr_t)set->Object() % PARANOIA_HASH_SIZE;
374 set->SetHashNext(sCheckSetHash[slot]);
375 sCheckSetHash[slot] = set;
380 remove_check_set(ParanoiaCheckSet* set) argument
382 int slot = (addr_t)set->Object() % PARANOIA_HASH_SIZE;
383 if (set
401 ParanoiaCheckSet* set = sCheckSetHash[slot]; local
424 ParanoiaCheckSet* set = lookup_check_set(object); local
453 ParanoiaCheckSet* set = lookup_check_set(object); local
478 ParanoiaCheckSet* set = lookup_check_set(object); local
512 ParanoiaCheckSet* set = lookup_check_set(object); local
565 ParanoiaCheckSet* set = lookup_check_set(object); local
[all...]
/haiku/src/system/libroot/posix/glibc/include/
H A Dlibc-symbols.h30 * HAVE_ASM_SET_DIRECTIVE if we have `.set B, A' instead of `A = B'.
35 and for symbol set and warning messages extensions in a.out and ELF.
127 .set C_SYMBOL_NAME (alias),C_SYMBOL_NAME (original) ASM_LINE_SEP \
129 .set C_SYMBOL_DOT_NAME (alias),C_SYMBOL_DOT_NAME (original)
132 .set C_SYMBOL_NAME (alias),C_SYMBOL_NAME (original)
136 .set C_SYMBOL_NAME (alias),C_SYMBOL_NAME (original)
312 /* Symbol set support macros. */
317 # define text_set_element(set, symbol) _elf_set_element(set, symbol)
319 # define data_set_element(set, symbo
[all...]
/haiku/src/kits/game/
H A DGSUtility.cpp19 InitRamp(float* value, float set, float frames, bigtime_t duration) argument
21 float diff = (set > *value) ? set - *value : *value - set;
32 ramp->inc = (set - *value) / inc;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dah_osdep.h61 * Linker set writearounds for chip and RF backend registration.
63 #define OS_DATA_SET(set, item) DATA_SET(set, item)
64 #define OS_SET_DECLARE(set, ptype) SET_DECLARE(set, ptype)
65 #define OS_SET_FOREACH(pvar, set) SET_FOREACH(pvar, set)

Completed in 227 milliseconds

12345678910