/aosp_15_r20/external/sdv/vsomeip/third_party/boost/atomic/include/boost/atomic/detail/ |
D | extra_ops_msvc_x86.hpp | 43 …INLINE storage_type fetch_negate(storage_type volatile& storage, memory_order order) BOOST_NOEXCEPT in fetch_negate() 45 base_type::fence_before(order); in fetch_negate() 59 base_type::fence_after(order); in fetch_negate() 63 …static BOOST_FORCEINLINE storage_type negate(storage_type volatile& storage, memory_order order) B… in negate() 65 base_type::fence_before(order); in negate() 79 base_type::fence_after(order); in negate() 83 …FORCEINLINE bool negate_and_test(storage_type volatile& storage, memory_order order) BOOST_NOEXCEPT in negate_and_test() 85 base_type::fence_before(order); in negate_and_test() 100 base_type::fence_after(order); in negate_and_test() 104 …static BOOST_FORCEINLINE void opaque_negate(storage_type volatile& storage, memory_order order) BO… in opaque_negate() [all …]
|
D | atomic_ref_impl.hpp | 165 …BOOST_FORCEINLINE void store(value_arg_type v, memory_order order = memory_order_seq_cst) const BO… in store() argument 167 BOOST_ASSERT(order != memory_order_consume); in store() 168 BOOST_ASSERT(order != memory_order_acquire); in store() 169 BOOST_ASSERT(order != memory_order_acq_rel); in store() 171 … core_operations::store(this->storage(), atomics::detail::bitwise_cast< storage_type >(v), order); in store() 174 … BOOST_FORCEINLINE value_type load(memory_order order = memory_order_seq_cst) const BOOST_NOEXCEPT in load() argument 176 BOOST_ASSERT(order != memory_order_release); in load() 177 BOOST_ASSERT(order != memory_order_acq_rel); in load() 179 … return atomics::detail::bitwise_cast< value_type >(core_operations::load(this->storage(), order)); in load() 182 …BOOST_FORCEINLINE value_type exchange(value_arg_type v, memory_order order = memory_order_seq_cst)… in exchange() argument [all …]
|
D | atomic_impl.hpp | 199 …BOOST_FORCEINLINE void store(value_arg_type v, memory_order order = memory_order_seq_cst) volatile… in store() argument 201 BOOST_ASSERT(order != memory_order_consume); in store() 202 BOOST_ASSERT(order != memory_order_acquire); in store() 203 BOOST_ASSERT(order != memory_order_acq_rel); in store() 205 … core_operations::store(this->storage(), atomics::detail::bitwise_cast< storage_type >(v), order); in store() 208 …BOOST_FORCEINLINE value_type load(memory_order order = memory_order_seq_cst) const volatile BOOST_… in load() argument 210 BOOST_ASSERT(order != memory_order_release); in load() 211 BOOST_ASSERT(order != memory_order_acq_rel); in load() 213 … return atomics::detail::bitwise_cast< value_type >(core_operations::load(this->storage(), order)); in load() 216 …BOOST_FORCEINLINE value_type exchange(value_arg_type v, memory_order order = memory_order_seq_cst)… in exchange() argument [all …]
|
D | extra_ops_generic.hpp | 42 …INLINE storage_type fetch_negate(storage_type volatile& storage, memory_order order) BOOST_NOEXCEPT in fetch_negate() 46 …< Signed, storage_type >(static_cast< emulated_storage_type >(-old_val)), order, memory_order_rela… in fetch_negate() 50 …static BOOST_FORCEINLINE storage_type negate(storage_type volatile& storage, memory_order order) B… in negate() 58 … while (!base_type::compare_exchange_weak(storage, old_val, new_val, order, memory_order_relaxed)); in negate() 62 …storage_type add(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in add() 64 return base_type::fetch_add(storage, v, order) + v; in add() 67 …storage_type sub(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in sub() 69 return base_type::fetch_sub(storage, v, order) - v; in sub() 72 …type bitwise_and(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in bitwise_and() 74 return base_type::fetch_and(storage, v, order) & v; in bitwise_and() [all …]
|
D | extra_ops_gcc_ppc.hpp | 42 …static BOOST_FORCEINLINE void opaque_negate(storage_type volatile& storage, memory_order order) BO… in opaque_negate() 44 base_type::fetch_negate(storage, order); in opaque_negate() 47 …RCEINLINE void opaque_complement(storage_type volatile& storage, memory_order order) BOOST_NOEXCEPT in opaque_complement() 49 base_type::fetch_complement(storage, order); in opaque_complement() 52 …FORCEINLINE bool negate_and_test(storage_type volatile& storage, memory_order order) BOOST_NOEXCEPT in negate_and_test() 54 return !!base_type::negate(storage, order); in negate_and_test() 57 …ool add_and_test(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in add_and_test() 59 return !!base_type::add(storage, v, order); in add_and_test() 62 …ool sub_and_test(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in sub_and_test() 64 return !!base_type::sub(storage, v, order); in sub_and_test() [all …]
|
D | core_arch_ops_gcc_ppc.hpp | 94 …NLINE void store(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in store() 96 fence_before(order); in store() 105 …CEINLINE storage_type load(storage_type const volatile& storage, memory_order order) BOOST_NOEXCEPT in load() 108 if (order == memory_order_seq_cst) in load() 110 …if ((static_cast< unsigned int >(order) & (static_cast< unsigned int >(memory_order_consume) | sta… in load() 136 …ge_type exchange(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in exchange() 139 fence_before(order); in exchange() 150 fence_after(order); in exchange() 206 …e_type fetch_add(storage_type volatile& storage, storage_type v, memory_order order) BOOST_NOEXCEPT in fetch_add() 209 fence_before(order); in fetch_add() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/endian/include/boost/endian/detail/ |
D | endian_store.hpp | 10 #include <boost/endian/detail/order.hpp> 27 …emplate<class T, std::size_t N1, BOOST_SCOPED_ENUM(order) O1, std::size_t N2, BOOST_SCOPED_ENUM(or… 40 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) Order> 46 return detail::endian_store_impl<T, sizeof(T), order::native, N, Order>()( p, v ); in endian_store() 54 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) O> struct endian_store_impl<T, N, O, N, O> 66 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) O1, BOOST_SCOPED_ENUM(order) O2> struct e… 83 template<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_store_impl<T, 2, Order, 1, order::l… 90 boost::endian::endian_store<T, 2, order::little>( tmp, v ); in operator ()() 96 template<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_store_impl<T, 2, Order, 1, order::b… 103 boost::endian::endian_store<T, 2, order::big>( tmp, v ); in operator ()() [all …]
|
D | endian_load.hpp | 10 #include <boost/endian/detail/order.hpp> 28 …emplate<class T, std::size_t N1, BOOST_SCOPED_ENUM(order) O1, std::size_t N2, BOOST_SCOPED_ENUM(or… 41 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) Order> 47 return detail::endian_load_impl<T, sizeof(T), order::native, N, Order>()( p ); in endian_load() 55 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) O> struct endian_load_impl<T, N, O, N, O> 69 template<class T, std::size_t N, BOOST_SCOPED_ENUM(order) O1, BOOST_SCOPED_ENUM(order) O2> struct e… 88 template<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_load_impl<T, 2, Order, 1, order::li… 99 return boost::endian::endian_load<T, 2, order::little>( tmp ); in operator ()() 103 template<class T, BOOST_SCOPED_ENUM(order) Order> struct endian_load_impl<T, 2, Order, 1, order::bi… 114 return boost::endian::endian_load<T, 2, order::big>( tmp ); in operator ()() [all …]
|
/aosp_15_r20/frameworks/opt/vcard/tests/src/com/android/vcard/tests/ |
D | VCardParserTests.java | 38 private enum Order { enum in VCardParserTests 47 private final List<Order> mHistory = new ArrayList<Order>(); 48 private final List<Order> mExpectedOrder = new ArrayList<Order>(); 50 public MockVCardInterpreter addExpectedOrder(Order order) { in addExpectedOrder() argument 51 mExpectedOrder.add(order); in addExpectedOrder() 55 private void inspectOrder(Order order) { in inspectOrder() argument 56 mHistory.add(order); in inspectOrder() 57 final Order top = mExpectedOrder.get(0); in inspectOrder() 58 assertEquals(top, order); in inspectOrder() 69 inspectOrder(Order.START); in onVCardStarted() [all …]
|
/aosp_15_r20/external/libchrome/base/message_loop/ |
H A D | message_loop_unittest.cc | 133 // Saves the order in which the tasks executed. 236 void RecursiveFunc(TaskList* order, int cookie, int depth, in RecursiveFunc() argument 238 order->RecordStart(RECURSIVE, cookie); in RecursiveFunc() 244 BindOnce(&RecursiveFunc, order, cookie, depth - 1, is_reentrant)); in RecursiveFunc() 246 order->RecordEnd(RECURSIVE, cookie); in RecursiveFunc() 249 void QuitFunc(TaskList* order, int cookie) { in QuitFunc() argument 250 order->RecordStart(QUITMESSAGELOOP, cookie); in QuitFunc() 252 order->RecordEnd(QUITMESSAGELOOP, cookie); in QuitFunc() 459 void MessageBoxFunc(TaskList* order, int cookie, bool is_reentrant) { in MessageBoxFunc() argument 460 order->RecordStart(MESSAGEBOX, cookie); in MessageBoxFunc() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/endian/test/ |
D | endian_load_test.cpp | 19 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int8_t, 1, boost::endian::order::little>( v )), … in main() 20 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint8_t, 1, boost::endian::order::little>( v )),… in main() 22 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int8_t, 1, boost::endian::order::big>( v )), 0x0… in main() 23 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint8_t, 1, boost::endian::order::big>( v )), 0x… in main() 27 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int16_t, 1, boost::endian::order::little>( v )),… in main() 28 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint16_t, 1, boost::endian::order::little>( v ))… in main() 30 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int16_t, 1, boost::endian::order::big>( v )), 0x… in main() 31 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint16_t, 1, boost::endian::order::big>( v )), 0… in main() 35 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::int16_t, 2, boost::endian::order::little>( v )),… in main() 36 …BOOST_TEST_EQ( (boost::endian::endian_load<boost::uint16_t, 2, boost::endian::order::little>( v ))… in main() [all …]
|
D | conversion_test.cpp | 101 if( be::order::native == be::order::big ) in test() 125 BOOST_TEST_EQ((be::conditional_reverse<be::order::big, be::order::big>(big)), big); in test() 126 BOOST_TEST_EQ((be::conditional_reverse<be::order::little, in test() 127 be::order::little>(little)), little); in test() 128 BOOST_TEST_EQ((be::conditional_reverse<be::order::native, in test() 129 be::order::native>(native)), native); in test() 130 BOOST_TEST_EQ((be::conditional_reverse<be::order::big, in test() 131 be::order::little>(big)), little); in test() 132 BOOST_TEST_EQ((be::conditional_reverse<be::order::big, in test() 133 be::order::native>(big)), native); in test() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/endian/include/boost/endian/ |
D | buffers.hpp | 74 template <BOOST_SCOPED_ENUM(order) Order, class T, std::size_t n_bits, 79 typedef endian_buffer<order::big, int8_t, 8, align::yes> big_int8_buf_at; 80 typedef endian_buffer<order::big, int16_t, 16, align::yes> big_int16_buf_at; 81 typedef endian_buffer<order::big, int32_t, 32, align::yes> big_int32_buf_at; 82 typedef endian_buffer<order::big, int64_t, 64, align::yes> big_int64_buf_at; 85 typedef endian_buffer<order::big, uint8_t, 8, align::yes> big_uint8_buf_at; 86 typedef endian_buffer<order::big, uint16_t, 16, align::yes> big_uint16_buf_at; 87 typedef endian_buffer<order::big, uint32_t, 32, align::yes> big_uint32_buf_at; 88 typedef endian_buffer<order::big, uint64_t, 64, align::yes> big_uint64_buf_at; 91 typedef endian_buffer<order::little, int8_t, 8, align::yes> little_int8_buf_at; [all …]
|
D | endian.hpp | 28 typedef order endianness; 32 template <BOOST_SCOPED_ENUM(order) Order, class T, std::size_t n_bits, 34 using endian = endian_arithmetic<Order, T, n_bits, Align>; 38 typedef endian_arithmetic< order::big, int_least8_t, 8 > big8_t; 39 typedef endian_arithmetic< order::big, int_least16_t, 16 > big16_t; 40 typedef endian_arithmetic< order::big, int_least32_t, 24 > big24_t; 41 typedef endian_arithmetic< order::big, int_least32_t, 32 > big32_t; 42 typedef endian_arithmetic< order::big, int_least64_t, 40 > big40_t; 43 typedef endian_arithmetic< order::big, int_least64_t, 48 > big48_t; 44 typedef endian_arithmetic< order::big, int_least64_t, 56 > big56_t; [all …]
|
D | arithmetic.hpp | 71 template <BOOST_SCOPED_ENUM(order) Order, class T, std::size_t n_bits, 76 typedef endian_arithmetic<order::big, int8_t, 8, align::yes> big_int8_at; 77 typedef endian_arithmetic<order::big, int16_t, 16, align::yes> big_int16_at; 78 typedef endian_arithmetic<order::big, int32_t, 32, align::yes> big_int32_at; 79 typedef endian_arithmetic<order::big, int64_t, 64, align::yes> big_int64_at; 82 typedef endian_arithmetic<order::big, uint8_t, 8, align::yes> big_uint8_at; 83 typedef endian_arithmetic<order::big, uint16_t, 16, align::yes> big_uint16_at; 84 typedef endian_arithmetic<order::big, uint32_t, 32, align::yes> big_uint32_at; 85 typedef endian_arithmetic<order::big, uint64_t, 64, align::yes> big_uint64_at; 88 typedef endian_arithmetic<order::little, int8_t, 8, align::yes> little_int8_at; [all …]
|
D | conversion.hpp | 14 #include <boost/endian/detail/order.hpp> 45 // reverse byte order 51 // reverse byte order unless native endianness is big 54 // Returns: x if native endian order is big, otherwise endian_reverse(x) 57 // Returns: x if native endian order is big, otherwise endian_reverse(x) 59 // reverse byte order unless native endianness is little 62 // Returns: x if native endian order is little, otherwise endian_reverse(x) 65 // Returns: x if native endian order is little, otherwise endian_reverse(x) 67 // generic conditional reverse byte order 68 template <BOOST_SCOPED_ENUM(order) From, BOOST_SCOPED_ENUM(order) To, [all …]
|
/aosp_15_r20/art/test/712-varhandle-invocations/src/ |
H A D | VarHandleUnitTestHelpers.java | 64 public static boolean getBytesAs_boolean(byte[] array, int index, ByteOrder order) { in getBytesAs_boolean() argument 65 return getBytesAs_boolean(ByteBuffer.wrap(array), index, order); in getBytesAs_boolean() 68 public static byte getBytesAs_byte(byte[] array, int index, ByteOrder order) { in getBytesAs_byte() argument 69 return getBytesAs_byte(ByteBuffer.wrap(array), index, order); in getBytesAs_byte() 72 public static char getBytesAs_char(byte[] array, int index, ByteOrder order) { in getBytesAs_char() argument 73 return getBytesAs_char(ByteBuffer.wrap(array), index, order); in getBytesAs_char() 76 public static short getBytesAs_short(byte[] array, int index, ByteOrder order) { in getBytesAs_short() argument 77 return getBytesAs_short(ByteBuffer.wrap(array), index, order); in getBytesAs_short() 80 public static int getBytesAs_int(byte[] array, int index, ByteOrder order) { in getBytesAs_int() argument 81 return getBytesAs_int(ByteBuffer.wrap(array), index, order); in getBytesAs_int() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/algorithm/test/ |
D | apply_permutation_test.cpp | 26 std::vector<int> vec, order, result; in BOOST_AUTO_TEST_CASE() local 28 ba::apply_permutation(vec.begin(), vec.end(), order.begin(), order.end()); in BOOST_AUTO_TEST_CASE() 33 std::vector<int> vec, order, result; in BOOST_AUTO_TEST_CASE() local 35 order.push_back(0); in BOOST_AUTO_TEST_CASE() 38 ba::apply_permutation(vec.begin(), vec.end(), order.begin(), order.end()); in BOOST_AUTO_TEST_CASE() 43 std::vector<int> vec, order, result; in BOOST_AUTO_TEST_CASE() local 45 order.push_back(0); order.push_back(1); in BOOST_AUTO_TEST_CASE() 48 ba::apply_permutation(vec.begin(), vec.end(), order.begin(), order.end()); in BOOST_AUTO_TEST_CASE() 53 std::vector<int> vec, order, result; in BOOST_AUTO_TEST_CASE() local 55 order.push_back(1); order.push_back(0); in BOOST_AUTO_TEST_CASE() [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/internal/ |
D | pycore_atomic.h | 53 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \ argument 54 atomic_signal_fence(ORDER) 56 #define _Py_atomic_thread_fence(/*memory_order*/ ORDER) \ argument 57 atomic_thread_fence(ORDER) 59 #define _Py_atomic_store_explicit(ATOMIC_VAL, NEW_VAL, ORDER) \ argument 60 atomic_store_explicit(&((ATOMIC_VAL)->_value), NEW_VAL, ORDER) 62 #define _Py_atomic_load_explicit(ATOMIC_VAL, ORDER) \ argument 63 atomic_load_explicit(&((ATOMIC_VAL)->_value), ORDER) 84 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \ 85 __atomic_signal_fence(ORDER) [all …]
|
/aosp_15_r20/external/python/cpython3/Include/internal/ |
D | pycore_atomic.h | 53 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \ argument 54 atomic_signal_fence(ORDER) 56 #define _Py_atomic_thread_fence(/*memory_order*/ ORDER) \ argument 57 atomic_thread_fence(ORDER) 59 #define _Py_atomic_store_explicit(ATOMIC_VAL, NEW_VAL, ORDER) \ argument 60 atomic_store_explicit(&((ATOMIC_VAL)->_value), NEW_VAL, ORDER) 62 #define _Py_atomic_load_explicit(ATOMIC_VAL, ORDER) \ argument 63 atomic_load_explicit(&((ATOMIC_VAL)->_value), ORDER) 84 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \ 85 __atomic_signal_fence(ORDER) [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/internal/ |
D | pycore_atomic.h | 53 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \ argument 54 atomic_signal_fence(ORDER) 56 #define _Py_atomic_thread_fence(/*memory_order*/ ORDER) \ argument 57 atomic_thread_fence(ORDER) 59 #define _Py_atomic_store_explicit(ATOMIC_VAL, NEW_VAL, ORDER) \ argument 60 atomic_store_explicit(&((ATOMIC_VAL)->_value), NEW_VAL, ORDER) 62 #define _Py_atomic_load_explicit(ATOMIC_VAL, ORDER) \ argument 63 atomic_load_explicit(&((ATOMIC_VAL)->_value), ORDER) 84 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \ 85 __atomic_signal_fence(ORDER) [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/internal/ |
D | pycore_atomic.h | 53 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \ argument 54 atomic_signal_fence(ORDER) 56 #define _Py_atomic_thread_fence(/*memory_order*/ ORDER) \ argument 57 atomic_thread_fence(ORDER) 59 #define _Py_atomic_store_explicit(ATOMIC_VAL, NEW_VAL, ORDER) \ argument 60 atomic_store_explicit(&((ATOMIC_VAL)->_value), NEW_VAL, ORDER) 62 #define _Py_atomic_load_explicit(ATOMIC_VAL, ORDER) \ argument 63 atomic_load_explicit(&((ATOMIC_VAL)->_value), ORDER) 84 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \ 85 __atomic_signal_fence(ORDER) [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/internal/ |
D | pycore_atomic.h | 53 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \ argument 54 atomic_signal_fence(ORDER) 56 #define _Py_atomic_thread_fence(/*memory_order*/ ORDER) \ argument 57 atomic_thread_fence(ORDER) 59 #define _Py_atomic_store_explicit(ATOMIC_VAL, NEW_VAL, ORDER) \ argument 60 atomic_store_explicit(&((ATOMIC_VAL)->_value), NEW_VAL, ORDER) 62 #define _Py_atomic_load_explicit(ATOMIC_VAL, ORDER) \ argument 63 atomic_load_explicit(&((ATOMIC_VAL)->_value), ORDER) 84 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \ 85 __atomic_signal_fence(ORDER) [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/endian/doc/endian/ |
D | buffers.adoc | 14 The internal byte order of arithmetic types is traditionally called 20 integer binary buffer class template with control over byte order, value type, 150 enum class order { big, little, native }; 158 template <order Order, typename T, std::size_t Nbits, 222 template <order Order, class T, std::size_t Nbits, 244 template <class charT, class traits, order Order, class T, 248 const endian_buffer<Order, T, n_bits, Align>& x); 251 template <class charT, class traits, order Order, class T, 255 endian_buffer<Order, T, n_bits, Align>& x); 260 typedef endian_buffer<order::big, int_least8_t, 8> big_int8_buf_t; [all …]
|
/aosp_15_r20/external/cronet/base/task/ |
H A D | single_thread_task_executor_unittest.cc | 149 // Saves the order in which the tasks executed. 262 void RecursiveFunc(TaskList* order, int cookie, int depth) { in RecursiveFunc() argument 263 order->RecordStart(RECURSIVE, cookie); in RecursiveFunc() 266 FROM_HERE, BindOnce(&RecursiveFunc, order, cookie, depth - 1)); in RecursiveFunc() 268 order->RecordEnd(RECURSIVE, cookie); in RecursiveFunc() 271 void QuitFunc(TaskList* order, int cookie, base::OnceClosure quit_closure) { in QuitFunc() argument 272 order->RecordStart(QUITMESSAGELOOP, cookie); in QuitFunc() 274 order->RecordEnd(QUITMESSAGELOOP, cookie); in QuitFunc() 295 void MessageBoxFunc(TaskList* order, int cookie, bool is_reentrant) { in MessageBoxFunc() argument 296 order->RecordStart(MESSAGEBOX, cookie); in MessageBoxFunc() [all …]
|