Searched refs:select_infos (Results 1 - 7 of 7) sorted by relevance

/haiku/src/system/kernel/
H A Dsem.cpp100 select_info* select_infos; member in struct:sem_entry::__anon1::__anon2
299 if (sem->u.used.select_infos)
300 notify_select_events_list(sem->u.used.select_infos, events);
329 sem.u.used.select_infos = NULL;
515 sem->u.used.select_infos = NULL;
560 info->next = sSems[slot].u.used.select_infos;
561 sSems[slot].u.used.select_infos = info;
586 select_info** infoLocation = &sSems[slot].u.used.select_infos;
H A Dport.cpp133 select_info* select_infos; member in struct:__anon6::Port
145 select_infos(NULL)
621 if (port->select_infos)
622 notify_select_events_list(port->select_infos, events);
800 port->select_infos = NULL;
1081 portRef->select_infos = NULL;
1167 info->next = portRef->select_infos;
1168 portRef->select_infos = info;
1202 select_info** infoLocation = &portRef->select_infos;
H A Dthread.cpp190 select_infos(NULL),
2230 select_info* selectInfos = thread->select_infos;
2231 thread->select_infos = NULL;
2619 info->next = thread->select_infos;
2620 thread->select_infos = info;
2641 select_info** infoLocation = &thread->select_infos;
/haiku/src/system/kernel/fs/
H A Dfd.cpp324 selectInfos = context->select_infos[fd];
325 context->select_infos[fd] = NULL;
407 select_info* selectInfos = context->select_infos[newfd];
408 context->select_infos[newfd] = NULL;
582 info->next = context->select_infos[fd];
583 context->select_infos[fd] = info;
616 select_info** infoLocation = &context->select_infos[fd];
H A Dvfs.cpp4956 context->select_infos = (select_info**)(context->fds + tableSize);
4957 context->fds_close_on_exec = (uint8*)(context->select_infos + tableSize);
5064 select_info** oldSelectInfos = context->select_infos;
5070 + sizeof(struct select_infos**) * newSize
5076 context->select_infos = (select_info**)(context->fds + newSize);
5077 context->fds_close_on_exec = (uint8*)(context->select_infos + newSize);
5084 memcpy(context->select_infos, oldSelectInfos, sizeof(void*) * toCopy);
5091 memset(context->select_infos + oldSize, 0,
/haiku/headers/private/kernel/
H A Dvfs.h56 struct select_info **select_infos; member in struct:io_context
H A Dthread_types.h520 struct select_info *select_infos; // protected by fLock member in struct:BKernel::Thread

Completed in 100 milliseconds