Searched refs:id (Results 1 - 25 of 1383) sorted by last modified time

1234567891011>>

/haiku-fatelf/headers/os/game/
H A DDirectWindow.h109 screen_id id = B_MAIN_SCREEN_ID);
/haiku-fatelf/src/add-ons/kernel/partitioning_systems/gpt/
H A DHeader.cpp335 Header::_PrintGUID(const guid_t &id) argument
340 B_LENDIAN_TO_HOST_INT32(id.data1), B_LENDIAN_TO_HOST_INT16(id.data2),
341 B_LENDIAN_TO_HOST_INT16(id.data3), id.data4[0], id.data4[1],
342 id.data4[2], id.data4[3], id.data4[4], id
[all...]
H A DHeader.h65 const char* _PrintGUID(const guid_t& id);
H A Defi_gpt.cpp118 partition_data* child = create_child_partition(partition->id, index++,
208 partition_data* child = get_child_partition(partition->id, i);
247 partition_data* other = get_child_partition(partition->id, i);
248 if (other == NULL || other->id == child->id
283 partition_data* other = get_child_partition(partition->id, i);
284 if (other == NULL || other->id == child->id
295 partition_data* other = get_child_partition(partition->id, i);
296 if (other == NULL || other->id
[all...]
/haiku-fatelf/src/add-ons/media/media-add-ons/mixer/
H A DMixerInput.cpp109 return fInput.destination.id;
352 // verify that no other channel has id
/haiku-fatelf/src/apps/debugger/debugger_interface/
H A DDebuggerInterface.cpp490 ImageInfo* info = new(std::nothrow) ImageInfo(fTeamID, imageInfo.id,
506 imageInfo.id, imageInfo.name, imageInfo.type,
747 ImageInfo(fTeamID, info.id, info.name, info.type,
757 ImageInfo(fTeamID, info.id, info.name, info.type,
/haiku-fatelf/src/kits/media/
H A DTimeSource.cpp184 // PRINT(1, "BTimeSource::GetTime: fBuf == 0, name %s, id %ld\n",Name(),ID());
242 // printf("##### BTimeSource::BTimeSource() name %s, id %ld\n", Name(), ID());
413 BTimeSource::BTimeSource(media_node_id id) : argument
423 ASSERT(id > 0);
424 // printf("###### explicit BTimeSource::BTimeSource() id %ld, name %s\n", id, Name());
430 sprintf(name, "__timesource_buf_%" B_PRId32, id);
434 "\n", id);
437 sprintf(name, "__cloned_timesource_buf_%" B_PRId32, id);
441 "\n", id);
[all...]
/haiku-fatelf/src/kits/midi2/
H A DMidiRosterLooper.cpp92 BMidiRosterLooper::NextEndpoint(int32* id) argument
94 ASSERT(id != NULL)
98 if (endp->ID() > *id) {
100 *id = endp->ID();
111 BMidiRosterLooper::FindEndpoint(int32 id) argument
115 if (endp->ID() == id) {
222 int32 id; local
228 if ((msg->FindInt32("midi:id", &id) == B_OK)
241 cons->fId = id;
267 int32 id; local
310 int32 id; local
[all...]
/haiku-fatelf/src/system/kernel/fs/
H A Dvfs.cpp161 dev_t id; member in struct:fs_mount
232 any unbusy vnode in that table, save to the immutable fields (device, id,
552 fMountID(vnode->mount->id),
553 fNodeID(vnode->id),
648 const dev_t* id = (dev_t*)_key; local
650 if (mount->id == *id)
661 const dev_t* id = (dev_t*)_key; local
664 return mount->id % range;
666 return (uint32)*id
674 find_mount(dev_t id) argument
683 get_mount(dev_t id, struct fs_mount** _mount) argument
2075 ino_t id; local
3153 uint32 id = val; local
3233 ino_t id = parse_expression(argv[argi + 1]); local
7113 partition_id id; member in struct:FileDeviceDeleter
[all...]
/haiku-fatelf/src/system/kernel/
H A Dteam.cpp69 team_id id; member in struct:team_key
115 return HashKey(value->id);
120 return value->id == key;
404 event.AddInt32("team", team->id);
414 Team::Team(team_id id, bool kernel) argument
417 this->id = id;
426 snprintf(lockName, sizeof(lockName), "Team:%" B_PRId32, id);
470 job_control_entry->thread = id;
534 Team::Create(team_id id, cons argument
569 Get(team_id id) argument
590 GetAndLock(team_id id) argument
964 ProcessGroup(pid_t id) argument
1003 Get(pid_t id) argument
1092 ProcessSession(pid_t id) argument
2248 get_job_control_entry(team_job_control_children& children, pid_t id) argument
2290 get_job_control_entry(Team* team, pid_t id, uint32 flags) argument
2652 common_get_team_usage_info(team_id id, int32 who, team_usage_info* info, uint32 flags) argument
2843 team_is_valid(team_id id) argument
2855 team_get_team_struct_locked(team_id id) argument
3231 team_get_address_space(team_id id, VMAddressSpace** _addressSpace) argument
3681 wait_for_team(team_id id, status_t* _returnCode) argument
3700 kill_team(team_id id) argument
3722 _get_team_info(team_id id, team_info* info, size_t size) argument
3766 _get_team_usage_info(team_id id, int32 who, team_usage_info* info, size_t size) argument
3794 getpgid(pid_t id) argument
3825 getsid(pid_t id) argument
4134 _user_wait_for_team(team_id id, status_t* _userReturnCode) argument
4225 _user_get_team_info(team_id id, team_info* userInfo) argument
4310 team_id id; member in struct:ExtendedTeamData
[all...]
H A Dthread.cpp138 return Notify(eventCode, thread->id, thread->team->id, thread);
201 id = threadID >= 0 ? threadID : allocate_thread_id();
206 snprintf(lockName, sizeof(lockName), "Thread:%" B_PRId32, id);
286 Thread::Get(thread_id id) argument
289 Thread* thread = sThreadHash.Lookup(id);
297 Thread::GetAndLock(thread_id id) argument
301 Thread* thread = sThreadHash.Lookup(id);
312 if (sThreadHash.Lookup(id) == thread)
325 Thread::GetDebug(thread_id id) argument
332 IsAlive(thread_id id) argument
[all...]
H A Delf.cpp85 image_id id = (image_id)(addr_t)_key; local
88 return image->id % range;
90 return (uint32)id % range;
99 image_id id = (image_id)(addr_t)_key; local
101 return id - image->id;
108 unregister_image(team_get_kernel_team(), image->id);
119 imageInfo.id = image->id;
128 if (image->text_region.id >
241 find_image(image_id id) argument
1560 get_image_symbol(image_id id, const char *name, int32 symbolClass, void **_symbol) argument
2102 area_id id; local
2532 unload_kernel_add_on(image_id id) argument
2638 elf_add_memory_image_symbol(image_id id, const char* name, addr_t address, size_t size, int32 type) argument
2750 _user_read_kernel_image_symbols(image_id id, elf_sym* symbolTable, int32* _symbolCount, char* stringTable, size_t* _stringTableSize, addr_t* _imageDelta) argument
[all...]
H A Dsem.cpp69 // computing the object index (id % sMaxSems), locking the respective
70 // sem_entry::lock and verifying that sem_entry::id matches afterwards.
116 sem_id id; member in struct:sem_entry
117 spinlock lock; // protects only the id field when unused
156 kprintf("%-*s id count team last name\n", B_PRINTF_POINTER_WIDTH,
161 if (sem->id < 0
169 " %s\n", sem, sem->id, sem->u.used.count,
183 kprintf("id: %" B_PRId32 " (%#" B_PRIx32 ")\n", sem->id, sem->id);
340 int32 id = sem.id; local
356 delete_sem_internal(sem_id id, bool checkPermission) argument
483 sem_id id = B_NO_MORE_SEMS; local
555 select_sem(int32 id, struct select_info* info, bool kernel) argument
596 deselect_sem(int32 id, struct select_info* info, bool kernel) argument
732 delete_sem(sem_id id) argument
739 acquire_sem(sem_id id) argument
746 acquire_sem_etc(sem_id id, int32 count, uint32 flags, bigtime_t timeout) argument
760 switch_sem_etc(sem_id semToBeReleased, sem_id id, int32 count, uint32 flags, bigtime_t timeout) argument
917 release_sem(sem_id id) argument
924 release_sem_etc(sem_id id, int32 count, uint32 flags) argument
1032 get_sem_count(sem_id id, int32 *_count) argument
1067 _get_sem_info(sem_id id, struct sem_info *info, size_t size) argument
1155 set_sem_owner(sem_id id, team_id newTeamID) argument
1192 sem_get_name_unsafe(sem_id id) argument
1223 _user_delete_sem(sem_id id) argument
1230 _user_acquire_sem(sem_id id) argument
1240 _user_acquire_sem_etc(sem_id id, int32 count, uint32 flags, bigtime_t timeout) argument
1252 _user_switch_sem(sem_id releaseSem, sem_id id) argument
1265 _user_switch_sem_etc(sem_id releaseSem, sem_id id, int32 count, uint32 flags, bigtime_t timeout) argument
1282 _user_release_sem(sem_id id) argument
1289 _user_release_sem_etc(sem_id id, int32 count, uint32 flags) argument
1296 _user_get_sem_count(sem_id id, int32 *userCount) argument
1313 _user_get_sem_info(sem_id id, struct sem_info *userInfo, size_t size) argument
1355 _user_set_sem_owner(sem_id id, team_id team) argument
[all...]
/haiku-fatelf/src/system/kernel/slab/
H A DMemoryManager.cpp715 delete_area(area->id);
1423 area->vmArea->id);
1426 delete_area(area->vmArea->id);
/haiku-fatelf/src/system/kernel/debug/
H A Dtracing.cpp848 fThread = thread->id;
850 fTeam = thread->team->id;
/haiku-fatelf/src/system/kernel/locks/
H A Dlock.cpp192 lock->holder = waiter->thread->id;
548 kprintf(" %" B_PRId32 "/%c", waiter->thread->id, waiter->writer ? 'w' : 'r');
711 lock->holder = waiter.thread->id;
753 lock->holder = waiter->thread->id;
830 lock->holder = waiter.thread->id;
900 kprintf(" %" B_PRId32, waiter->thread->id);
/haiku-fatelf/src/add-ons/kernel/bus_managers/ps2/
H A Dps2_alps.cpp95 uint8 id[3]; member in struct:alps_model_info
314 if (info->id[0] == 0) {
320 if (info->id[0] == val[0] && info->id[1] == val[1]
321 && info->id[2] == val[2]) {
H A Dps2_service.cpp25 uint32 id; member in struct:__anon52
49 cmd.id = PS2_SERVICE_NOTIFY_DEVICE_ADDED;
66 cmd.id = PS2_SERVICE_NOTIFY_DEVICE_REPUBLISH;
83 cmd.id = PS2_SERVICE_NOTIFY_DEVICE_REMOVED;
108 switch (cmd.id) {
127 TRACE("ps2: PS2_SERVICE: unknown id %lu\n", cmd.id);
/haiku-fatelf/src/apps/deskbar/
H A DBarView.cpp246 int32 id; local
247 AddItem(new BMessage(*message), B_DESKBAR_TRAY, &id);
1107 TBarView::ItemInfo(int32 id, const char** name, DeskbarShelf* shelf) argument
1110 return fReplicantTray->ItemInfo(id, name);
1115 TBarView::ItemInfo(const char* name, int32* id, DeskbarShelf* shelf) argument
1118 return fReplicantTray->ItemInfo(name, id);
1123 TBarView::ItemExists(int32 id, DeskbarShelf) argument
1125 return fReplicantTray->IconExists(id);
1144 TBarView::AddItem(BMessage* item, DeskbarShelf, int32* id) argument
1146 return fReplicantTray->AddIcon(item, id);
1151 AddItem(BEntry* entry, DeskbarShelf, int32* id) argument
1158 RemoveItem(int32 id) argument
[all...]
/haiku-fatelf/src/kits/storage/
H A DResourceFile.cpp1086 int32 id = _GetInt(info->ri_id); local
1120 item->SetIdentity(type, id, resourceName.String());
/haiku-fatelf/src/kits/storage/disk_device/
H A DPartition.cpp287 return _PartitionData()->id;
673 BPartition::FindDescendant(partition_id id) const
675 IDFinderVisitor visitor(id);
1292 if (data->children[k]->id == child->ID()) {
/haiku-fatelf/src/servers/print/
H A DTransport.cpp125 image_id id = ::load_add_on(path.Path()); local
126 if (id < B_OK)
132 if (get_image_symbol(id, B_TRANSPORT_FEATURES_SYMBOL,
134 unload_add_on(id);
140 fImageID = id;
143 ::unload_add_on(id);
161 image_id id = fImageID; local
165 if (id == -1 && (id = load_add_on(fPath.Path())) < 0)
166 return id;
[all...]
/haiku-fatelf/src/system/kernel/vm/
H A Dvm.cpp437 lookup_area(VMAddressSpace* addressSpace, area_id id) argument
441 VMArea* area = VMAreaHash::LookupLocked(id);
1017 vm_prepare_kernel_area_debug_protection(area_id id, void** cookie) argument
1021 status_t status = locker.SetFromArea(id, area);
1139 return area->id;
1527 return area->id;
1655 return area->id;
1756 return area->id;
1807 return area->id;
1993 return area->id;
2252 vm_delete_area(team_id team, area_id id, bool kernel) argument
3368 int32 id = 0; local
4718 vm_set_area_memory_type(area_id id, phys_addr_t physicalBase, uint32 type) argument
5736 _get_area_info(area_id id, area_info* info, size_t size) argument
5809 transfer_area(area_id id, void** _address, uint32 addressSpec, team_id target, bool kernel) argument
[all...]
H A DVMCache.cpp1341 kprintf(" area 0x%" B_PRIx32 ", %s\n", area->id, area->name);
/haiku-fatelf/src/system/libroot/posix/pthread/
H A Dpthread.cpp154 thread->id = _kern_spawn_thread(&attributes);
155 if (thread->id < 0) {
161 resume_thread(thread->id);
190 status_t error = wait_for_thread(thread->id, &dummy);
215 status_t status = send_signal(thread->id, (uint)sig);
268 status_t status = _kern_get_thread_info(thread->id, &info);
285 status = _kern_set_thread_priority(thread->id, param->sched_priority);
298 return thread->id;

Completed in 184 milliseconds

1234567891011>>