Home
last modified time | relevance | path

Searched refs:NativeId (Results 1 – 5 of 5) sorted by relevance

/external/pigweed/pw_thread_threadx/public/pw_thread_threadx/
Did_native.h24 class NativeId {
26 constexpr NativeId(TX_THREAD* thread_ptr = nullptr)
29 constexpr bool operator==(NativeId other) const {
32 constexpr bool operator!=(NativeId other) const {
35 constexpr bool operator<(NativeId other) const {
38 constexpr bool operator<=(NativeId other) const {
41 constexpr bool operator>(NativeId other) const {
44 constexpr bool operator>=(NativeId other) const {
/external/pigweed/pw_thread_embos/public/pw_thread_embos/
Did_native.h24 class NativeId {
26 constexpr NativeId(OS_TASK* task_ptr = nullptr) : task_ptr_(task_ptr) {} in task_ptr_()
28 constexpr bool operator==(NativeId other) const {
31 constexpr bool operator!=(NativeId other) const {
34 constexpr bool operator<(NativeId other) const {
37 constexpr bool operator<=(NativeId other) const {
40 constexpr bool operator>(NativeId other) const {
43 constexpr bool operator>=(NativeId other) const {
/external/pigweed/pw_thread_freertos/public/pw_thread_freertos/
Did_native.h25 class NativeId {
27 constexpr NativeId(TaskHandle_t task_handle = nullptr)
30 constexpr bool operator==(NativeId other) const {
33 constexpr bool operator!=(NativeId other) const {
36 constexpr bool operator<(NativeId other) const {
39 constexpr bool operator<=(NativeId other) const {
42 constexpr bool operator>(NativeId other) const {
45 constexpr bool operator>=(NativeId other) const {
/external/pigweed/pw_thread_stl/public/pw_thread_stl/
Did_native.h20 using NativeId = std::thread::id; variable
/external/pigweed/pw_thread/public/pw_thread/
Did.h33 using Id = backend::NativeId;