Home
last modified time | relevance | path

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

/external/rust/crates/libc/src/unix/haiku/
Dnative.rs369 pub const B_STORAGE_ERROR_BASE: status_t = B_GENERAL_ERROR_BASE + 0x6000; constant
446 pub const B_FILE_ERROR: status_t = B_STORAGE_ERROR_BASE + 0;
447 pub const B_FILE_NOT_FOUND: status_t = B_STORAGE_ERROR_BASE + 1;
448 pub const B_FILE_EXISTS: status_t = B_STORAGE_ERROR_BASE + 2;
449 pub const B_ENTRY_NOT_FOUND: status_t = B_STORAGE_ERROR_BASE + 3;
450 pub const B_NAME_TOO_LONG: status_t = B_STORAGE_ERROR_BASE + 4;
451 pub const B_NOT_A_DIRECTORY: status_t = B_STORAGE_ERROR_BASE + 5;
452 pub const B_DIRECTORY_NOT_EMPTY: status_t = B_STORAGE_ERROR_BASE + 6;
453 pub const B_DEVICE_FULL: status_t = B_STORAGE_ERROR_BASE + 7;
454 pub const B_READ_ONLY_DEVICE: status_t = B_STORAGE_ERROR_BASE + 8;
[all …]
/external/python/cpython2/Lib/plat-beos5/
DIN.py147 B_STORAGE_ERROR_BASE = B_GENERAL_ERROR_BASE + 0x6000 variable