Searched refs:fds_close_on_exec (Results 1 - 6 of 6) sorted by relevance

/haiku/src/tools/fs_shell/
H A Dvfs.h38 uint8_t *fds_close_on_exec; member in struct:FSShell::io_context
H A Dfd.cpp76 return CHECK_BIT(context->fds_close_on_exec[fd / 8], fd & 7) ? true : false;
84 context->fds_close_on_exec[fd / 8] |= (1 << (fd & 7));
86 context->fds_close_on_exec[fd / 8] &= ~(1 << (fd & 7));
H A Dvfs.cpp2853 context->fds_close_on_exec = (uint8_t *)(context->fds + tableSize);
/haiku/src/system/kernel/fs/
H A Dfd.cpp96 return CHECK_BIT(context->fds_close_on_exec[fd / 8], fd & 7) ? true : false;
104 context->fds_close_on_exec[fd / 8] |= (1 << (fd & 7));
106 context->fds_close_on_exec[fd / 8] &= ~(1 << (fd & 7));
H A Dvfs.cpp4957 context->fds_close_on_exec = (uint8*)(context->select_infos + tableSize);
5065 uint8* oldCloseOnExecTable = context->fds_close_on_exec;
5077 context->fds_close_on_exec = (uint8*)(context->select_infos + newSize);
5085 memcpy(context->fds_close_on_exec, oldCloseOnExecTable,
5093 memset(context->fds_close_on_exec + oldCloseOnExitBitmapSize, 0,
/haiku/headers/private/kernel/
H A Dvfs.h57 uint8 *fds_close_on_exec; member in struct:io_context

Completed in 97 milliseconds