Home
last modified time | relevance | path

Searched refs:B_OS_ERROR_BASE (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/libc/src/unix/haiku/
Dnative.rs363 pub const B_OS_ERROR_BASE: status_t = B_GENERAL_ERROR_BASE + 0x1000; constant
402 pub const B_BAD_SEM_ID: status_t = B_OS_ERROR_BASE + 0;
403 pub const B_NO_MORE_SEMS: status_t = B_OS_ERROR_BASE + 1;
405 pub const B_BAD_THREAD_ID: status_t = B_OS_ERROR_BASE + 0x100;
406 pub const B_NO_MORE_THREADS: status_t = B_OS_ERROR_BASE + 0x101;
407 pub const B_BAD_THREAD_STATE: status_t = B_OS_ERROR_BASE + 0x102;
408 pub const B_BAD_TEAM_ID: status_t = B_OS_ERROR_BASE + 0x103;
409 pub const B_NO_MORE_TEAMS: status_t = B_OS_ERROR_BASE + 0x104;
411 pub const B_BAD_PORT_ID: status_t = B_OS_ERROR_BASE + 0x200;
412 pub const B_NO_MORE_PORTS: status_t = B_OS_ERROR_BASE + 0x201;
[all …]
/external/python/cpython2/Lib/plat-beos5/
DIN.py141 B_OS_ERROR_BASE = B_GENERAL_ERROR_BASE + 0x1000 variable