Searched refs:link (Results 51 - 75 of 239) sorted by relevance

12345678910

/haiku/src/servers/app/
H A DMessageLooper.h42 BPrivate::LinkReceiver& link);
H A DDrawState.h52 uint16 ReadFontFromLink(BPrivate::LinkReceiver& link,
57 void ReadFromLink(BPrivate::LinkReceiver& link);
58 void WriteToLink(BPrivate::LinkSender& link) const;
/haiku/src/libs/bsd/
H A Ddl_iterate_phdr.c11 #include <link.h>
/haiku/src/tests/kits/app/messaging/
H A DPortLinkTest.cpp12 get_next_message(BPrivate::PortLink &link, int32 expectedCode) argument
15 if (link.GetNextMessage(code) != B_OK) {
/haiku/src/apps/deskbar/
H A DDeskbarUtils.cpp76 BSymLink link; local
104 dir.CreateSymLink(ref.name, path.Path(), &link);
/haiku/src/system/kernel/slab/
H A DObjectCache.cpp219 object_link* link = object_to_link(object, object_size); local
222 object, link, source, source->size - source->count,
225 _push(source->free, link);
229 ADD_PARANOIA_CHECK(PARANOIA_SUSPICIOUS, source, &link->next, sizeof(void*));
270 object_link* link = object_to_link(object, object_size); local
273 if (freeLink == link) {
/haiku/src/system/libroot/posix/malloc_debug/
H A Dguarded_heap.cpp91 list_link link; member in struct:list
99 list_link* link = GET_LINK(list, item); local
101 link->next->prev = link->prev;
102 link->prev->next = link->next;
109 list_link* link = GET_LINK(list, item); local
111 link->next = &list->link;
112 link
129 list_link* link = GET_LINK(list, item); local
[all...]
/haiku/src/tests/system/kernel/slab/
H A DSlab.h215 void *Object(Link *link) const
217 return ((uint8_t *)link) - (fParent->ObjectSize() - sizeof(Link));
356 void *Object(ObjectLink *link) const
358 return ((Link *)link)->buffer;
363 Link *link = _Linkage(object); local
364 return ObjectInfo(link->slab, link);
390 fSlabCache("slab cache", 0), fLinkCache("link cache", 0) {}
443 Link *link = fLinkCache.Alloc(flags); local
445 if (link
467 Link *link = fHashTable.Lookup(it); local
[all...]
/haiku/src/kits/app/
H A DApplication.cpp336 BPrivate::AppServerLink link; local
337 link.StartMessage(B_QUIT_REQUESTED);
338 link.Flush();
702 // The link is not used, but we currently borrow its lock
703 BPrivate::AppServerLink link; local
865 BPrivate::AppServerLink link; local
866 link.StartMessage(AS_SHOW_CURSOR);
867 link.Flush();
874 BPrivate::AppServerLink link; local
875 link
883 BPrivate::AppServerLink link; local
892 BPrivate::AppServerLink link; local
913 BPrivate::AppServerLink link; local
1351 BPrivate::AppServerLink link; local
1362 BPrivate::AppServerLink link; local
[all...]
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme.c52 LIST_FOREACH(c, &ctrlr_head, link) {
55 LIST_REMOVE(c, link);
197 LIST_FOREACH(ctrlr, &ctrlr_head, link) {
213 LIST_INSERT_HEAD(&ctrlr_head, ctrlr, link);
384 LIST_REMOVE(ctrlr, link);
/haiku/headers/private/kernel/util/
H A DDoublyLinkedQueue.h204 Link *link = sGetLink(element); local
206 link->next = before;
207 link->previous = beforeLink->previous;
208 if (link->previous != NULL)
209 sGetLink(link->previous)->next = element;
/haiku/src/kits/interface/
H A DGraphicsDefs.cpp200 BPrivate::AppServerLink link; local
201 link.StartMessage(AS_GET_BITMAP_SUPPORT_FLAGS);
202 link.Attach<uint32>((uint32)space);
206 if (link.FlushWithReply(code) == B_OK && code == B_OK) {
207 if (link.Read<uint32>(&flags) < B_OK)
H A DDragger.cpp381 BPrivate::AppServerLink link; local
382 link.StartMessage(AS_SET_SHOW_ALL_DRAGGERS);
383 link.Attach<bool>(true);
385 status_t status = link.Flush();
400 BPrivate::AppServerLink link; local
401 link.StartMessage(AS_SET_SHOW_ALL_DRAGGERS);
402 link.Attach<bool>(false);
404 status_t status = link.Flush();
423 BPrivate::AppServerLink link; local
424 link
[all...]
/haiku/src/add-ons/kernel/drivers/bluetooth/h2/h2generic/
H A Dsnet_buffer.cpp17 struct list_link link; member in struct:snet_buffer
248 kprintf("item=%p\tprev=%p\tnext=%p\tallocated=%d\n", snb, snb->link.prev,
249 snb->link.next, snb->allocatedSize);
/haiku/src/kits/game/
H A DWindowScreen.cpp676 BPrivate::AppServerLink link;
678 link.StartMessage(AS_DIRECT_SCREEN_LOCK);
679 link.Attach<bool>(lock);
682 if (link.FlushWithReply(status) == B_OK && status == B_OK)
857 AppServerLink link; local
858 link.StartMessage(AS_GET_FRAME_BUFFER_CONFIG);
859 link.Attach<screen_id>(screen.ID());
862 if (link.FlushWithReply(result) < B_OK || result < B_OK)
866 link.Read<frame_buffer_config>(&config);
957 AppServerLink link; local
[all...]
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DHIDParser.cpp240 globalState.link = copy;
246 if (globalState.link == NULL) {
251 global_item_state *link = globalState.link; local
252 memcpy(&globalState, link, sizeof(global_item_state));
253 free(link);
371 global_item_state *state = globalState.link;
373 global_item_state *next = state->link;
/haiku/src/add-ons/kernel/busses/usb/
H A Duhci.cpp486 dprintf("link phy: 0x%08" B_PRIx32 "; link type: %s; terminate: %s\n",
737 isochronous_transfer_data *next = isoTransfer->link;
749 transfer_data *next = transfer->link;
1025 current = current->link;
1069 current = current->link;
1178 data->link = NULL;
1197 it = it->link;
1201 fLastTransfer->link = data;
1234 data->link
1715 transfer_data **link = &fFreeList; local
[all...]
/haiku/src/tests/apps/fake_app_server/
H A DAppServer.h52 void DispatchMessage(int32 code, BPrivate::PortLink &link);
H A DServerApp.h69 void DispatchMessage(int32 code, BPrivate::LinkReceiver &link);
/haiku/src/libs/compat/freebsd_network/
H A Dshared.h62 struct list_link link; member in struct:device
/haiku/src/system/libroot/posix/unistd/
H A Dlink.c37 // _kern_read_link() returns the length of the link, but readlinkat() is
39 // buffer is larger than the link contents, then linkLen is the number
82 link(const char *toPath, const char *linkPath) function
/haiku/src/preferences/appearance/
H A DCurView.cpp401 BPrivate::PortLink link(port);
404 link.StartMessage(AS_SET_SYSCURSOR_DEFAULTS);
405 link.Flush();
406 link.GetNextMessage(code);
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dplugin.h111 * Get a symbolic link
112 * The symbolic link must be returned in an allocated buffer,
171 int (*link)(ntfs_inode *dir_ni, const REPARSE_POINT *reparse, member in struct:plugin_operations
/haiku/headers/private/userlandfs/fuse/
H A Dfuse_compat.h22 int (*link) (const char *, const char *); member in struct:fuse_operations_compat25
81 int (*link) (const char *, const char *); member in struct:fuse_operations_compat22
132 int (*link) (const char *, const char *); member in struct:fuse_operations_compat2
180 int (*link) (const char *, const char *); member in struct:fuse_operations_compat1
/haiku/headers/private/kernel/
H A Dint.h34 list_link link; member in struct:irq_assignment

Completed in 166 milliseconds

12345678910