Home
last modified time | relevance | path

Searched refs:_stop (Results 1 – 6 of 6) sorted by relevance

/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dbitstring.h108 _bit_make_mask(int _start, int _stop) in _bit_make_mask() argument
111 (_BITSTR_MASK >> (_BITSTR_BITS - _bit_offset(_stop) - 1))); in _bit_make_mask()
160 bit_nset(bitstr_t *_bitstr, int _start, int _stop) in bit_nset() argument
164 _stopbitstr = _bitstr + _bit_idx(_stop); in bit_nset()
168 *_bitstr |= _bit_make_mask(_start, _stop); in bit_nset()
173 *_stopbitstr |= _bit_make_mask(0, _stop); in bit_nset()
179 bit_nclear(bitstr_t *_bitstr, int _start, int _stop) in bit_nclear() argument
183 _stopbitstr = _bitstr + _bit_idx(_stop); in bit_nclear()
187 *_bitstr &= ~_bit_make_mask(_start, _stop); in bit_nclear()
192 *_stopbitstr &= ~_bit_make_mask(0, _stop); in bit_nclear()
/haiku/src/apps/cortex/NodeManager/
H A DNodeGroup.cpp84 _stop(); in release()
308 status_t err = node->_stop(); in removeNode()
573 return _stop(); in stop()
1248 status_t NodeGroup::_stop() { in _stop() function in NodeGroup
1272 mem_fun(&NodeRef::_stop) in _stop()
1274 [](NodeRef* ref) { ref->_stop(); } in _stop()
H A DNodeGroup.h458 status_t _stop();
H A DNodeRef.h523 status_t _stop();
H A DNodeRef.cpp1947 status_t NodeRef::_stop() { in _stop() function in NodeRef
H A DNodeManager.cpp248 group->_stop(); in _clearGroup()