/haiku/src/system/boot/loader/file_systems/bfs/ |
H A D | Link.cpp | 13 Link::Link(Volume &volume, block_run run) in Link() function in BFS::Link 19 Link::Link(Volume &volume, off_t id) in Link() function in BFS::Link 25 Link::Link(const Stream &stream) in Link() function in BFS::Link 32 Link::InitCheck() in InitCheck() 39 Link::ReadLink(char *buffer, size_t bufferSize) in ReadLink() 46 Link::ReadAt(void *cookie, off_t pos, void *buffer, size_t bufferSize) in ReadAt() 53 Link::WriteAt(void *cookie, off_t pos, const void *buffer, size_t bufferSize) in WriteAt() 60 Link::Type() const in Type()
|
H A D | Link.h | 16 class Link : public File { 18 Link(Volume &volume, block_run run); 19 Link(Volume &volume, off_t id); 20 Link(const Stream &stream);
|
/haiku/src/add-ons/kernel/file_systems/packagefs/package_links/ |
H A D | PackageLinkDirectory.h | 43 typedef PackageLinkSymlink Link; typedef 65 status_t _CreateOrUpdateLink(Link*& link, 66 Package* package, Link::Type type, 69 void _RemoveLink(Link* link, 75 Link* fSelfLink; 76 Link* fSettingsLink;
|
H A D | PackageLinkDirectory.cpp | 186 Link::TYPE_INSTALLATION_LOCATION, StringConstants::Get().kSelfLinkName, in _Update() 191 error = _CreateOrUpdateLink(fSettingsLink, package, Link::TYPE_SETTINGS, in _Update() 249 PackageLinkDirectory::_RemoveLink(Link* link, PackageLinksListener* listener) in _RemoveLink() 264 PackageLinkDirectory::_CreateOrUpdateLink(Link*& link, Package* package, in _CreateOrUpdateLink() 265 Link::Type type, const String& name, PackageLinksListener* listener) in _CreateOrUpdateLink() 270 link = new(std::nothrow) Link(package, type); in _CreateOrUpdateLink()
|
/haiku/src/system/kernel/arch/ppc/paging/classic/ |
H A D | PPCPagingStructuresClassic.cpp | 23 typedef SinglyLinkedListLink<PPCPagingStructuresClassic> Link; typedef 26 inline Link* operator()(PPCPagingStructuresClassic* element) const in operator ()() 28 return (Link*)element->GetSinglyLinkedListLink(); in operator ()() 31 inline const Link* operator()( in operator ()() 34 return (const Link*)element->GetSinglyLinkedListLink(); in operator ()()
|
/haiku/src/system/kernel/arch/ppc/paging/460/ |
H A D | PPCPagingStructures460.cpp | 23 typedef SinglyLinkedListLink<PPCPagingStructures460> Link; typedef 26 inline Link* operator()(PPCPagingStructures460* element) const in operator ()() 28 return (Link*)element->GetSinglyLinkedListLink(); in operator ()() 31 inline const Link* operator()( in operator ()() 34 return (const Link*)element->GetSinglyLinkedListLink(); in operator ()()
|
/haiku/headers/private/fs_shell/ |
H A D | DoublyLinkedList.h | 52 typedef DoublyLinkedListLink<Element> Link; typedef 55 inline Link *operator()(Element *element) const in operator() 60 inline const Link *operator()(const Element *element) const in operator() 71 typedef DoublyLinkedListLink<Element> Link; typedef 74 inline Link *operator()(Element *element) const in operator() 79 inline const Link *operator()(const Element *element) const in operator() 89 typedef DoublyLinkedListLink<Element> Link; typedef 92 inline Link *operator()(Element *element) const in operator() 94 return (Link *)&element->link; in operator() 97 inline const Link *operator()(const Element *element) const in operator() [all …]
|
H A D | SinglyLinkedList.h | 52 typedef SinglyLinkedListLink<Element> Link; typedef 55 inline Link* operator()(Element* element) const in operator() 60 inline const Link* operator()(const Element* element) const in operator() 71 typedef SinglyLinkedListLink<Element> Link; typedef 74 inline Link* operator()(Element* element) const in operator() 79 inline const Link* operator()(const Element* element) const in operator() 97 typedef SinglyLinkedListLink<Element> Link; typedef 203 Link* elementLink = sGetLink(element); in Remove() 219 Link* elLink = sGetLink(element); in RemoveAll()
|
/haiku/src/tests/system/kernel/util/ |
H A D | SinglyLinkedListTest.cpp | 26 class Link { class 28 SinglyLinkedListLink<Link> next; 31 SinglyLinkedListLink<Link>* GetSinglyLinkedListLink() { in GetSinglyLinkedListLink() 35 bool operator==(const Link &ref) { in operator ==() 82 SinglyLinkedList<Link> list; in UserDefaultTest() 84 Link values[valueCount]; in UserDefaultTest()
|
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/ |
H A D | SLList.h | 24 typedef SLListLink<Element> Link; typedef 30 Link *GetSLListLink() { return &fSLListLink; } in GetSLListLink() 31 const Link *GetSLListLink() const { return &fSLListLink; } in GetSLListLink() 34 Link fSLListLink; 41 typedef SLListLink<Element> Link; typedef 44 inline Link *operator()(Element *element) const in operator() 49 inline const Link *operator()(const Element *element) const in operator() 64 typedef SLListLink<Element> Link; typedef 229 Link *elLink = fGetLink(element); in InsertAfter() 232 Link *prevLink = fGetLink(previous); in InsertAfter() [all …]
|
/haiku/src/system/kernel/arch/x86/paging/32bit/ |
H A D | X86PagingStructures32Bit.cpp | 23 typedef SinglyLinkedListLink<X86PagingStructures32Bit> Link; typedef 26 inline Link* operator()(X86PagingStructures32Bit* element) const in operator ()() 28 return (Link*)element->GetSinglyLinkedListLink(); in operator ()() 31 inline const Link* operator()( in operator ()() 34 return (const Link*)element->GetSinglyLinkedListLink(); in operator ()()
|
/haiku/src/system/kernel/arch/arm/paging/32bit/ |
H A D | ARMPagingStructures32Bit.cpp | 23 typedef SinglyLinkedListLink<ARMPagingStructures32Bit> Link; typedef 26 inline Link* operator()(ARMPagingStructures32Bit* element) const in operator ()() 28 return (Link*)element->GetSinglyLinkedListLink(); in operator ()() 31 inline const Link* operator()( in operator ()() 34 return (const Link*)element->GetSinglyLinkedListLink(); in operator ()()
|
/haiku/src/tests/system/kernel/slab/ |
H A D | Slab.h | 204 typedef BaseCache::ObjectLink Link; typedef 212 return objectSize + sizeof(Link); in RequiredSpace() 215 void *Object(Link *link) const in Object() 217 return ((uint8_t *)link) - (fParent->ObjectSize() - sizeof(Link)); in Object() 255 Link *_Linkage(void *object) const in _Linkage() 257 return (Link *)(((uint8_t *)object) in _Linkage() 258 + (fParent->ObjectSize() - sizeof(Link))); in _Linkage() 266 static Link *_Linkage(void *_this, void *object) in _Linkage() 319 struct Link : ObjectLink, HashTableLink<Link> { struct 327 typedef Link ValueType; [all …]
|
/haiku/headers/private/kernel/util/ |
H A D | SinglyLinkedList.h | 49 typedef SinglyLinkedListLink<Element> Link; typedef 52 inline Link* operator()(Element* element) const in operator() 57 inline const Link* operator()(const Element* element) const in operator() 68 typedef SinglyLinkedListLink<Element> Link; typedef 71 inline Link* operator()(Element* element) const in operator() 76 inline const Link* operator()(const Element* element) const in operator() 94 typedef SinglyLinkedListLink<Element> Link; typedef 213 Link* elementLink = sGetLink(element); in Remove() 231 Link* elementLink = sGetLink(element); in Remove() 272 Link* elLink = sGetLink(element); in RemoveAll()
|
H A D | DoublyLinkedList.h | 53 typedef DoublyLinkedListLink<Element> Link; typedef 56 inline Link* operator()(Element* element) const in operator() 61 inline const Link* operator()(const Element* element) const in operator() 72 typedef DoublyLinkedListLink<Element> Link; typedef 75 inline Link* operator()(Element* element) const in operator() 80 inline const Link* operator()(const Element* element) const in operator() 90 typedef DoublyLinkedListLink<Element> Link; typedef 93 inline Link* operator()(Element* element) const in operator() 95 return (Link*)&element->link; in operator() 98 inline const Link* operator()(const Element* element) const in operator() [all …]
|
H A D | DoublyLinkedQueue.h | 31 typedef DoublyLinkedListLink<Element> Link; typedef 182 Link *elLink = sGetLink(element); in Insert() 203 Link *beforeLink = sGetLink(before); in InsertBefore() 204 Link *link = sGetLink(element); in InsertBefore() 237 Link *elLink = sGetLink(element); in Remove() 255 Link *aLink = sGetLink(a); in Swap() 256 Link *bLink = sGetLink(b); in Swap() 292 Link *elLink; in MoveFrom() 311 Link *elLink = sGetLink(element); in RemoveAll()
|
H A D | SplayTree.h | 50 typedef SplayTreeLink<Node> Link; typedef 65 Link* nodeLink = Definition::GetLink(node); in Insert() 81 Link* rootLink = Definition::GetLink(fRoot); in Insert() 109 Link* rootLink = Definition::GetLink(fRoot); in Remove() 135 Link* rootLink = Definition::GetLink(fRoot); in Remove() 280 Link headerLink; in _Splay() 283 Link* lLink = &headerLink; in _Splay() 284 Link* rLink = &headerLink; in _Splay() 300 Link* yLink = Definition::GetLink(y); in _Splay() 321 Link* yLink = Definition::GetLink(y); in _Splay() [all …]
|
/haiku/src/system/kernel/arch/m68k/paging/040/ |
H A D | M68KPagingStructures040.cpp | 23 typedef SinglyLinkedListLink<M68KPagingStructures040> Link; typedef 26 inline Link* operator()(M68KPagingStructures040* element) const in operator ()() 28 return (Link*)element->GetSinglyLinkedListLink(); in operator ()() 31 inline const Link* operator()( in operator ()() 34 return (const Link*)element->GetSinglyLinkedListLink(); in operator ()()
|
/haiku/src/add-ons/kernel/file_systems/ramfs/ |
H A D | Entry.h | 33 status_t Link(Node *node); 67 typedef DoublyLinkedListLink<Entry> Link; typedef 70 inline Link *operator()(Entry *entry) const in operator()
|
H A D | Entry.cpp | 22 Link(node); in Entry() 41 Entry::Link(Node *node) in Link() function in Entry 50 status_t error = node->Link(this); in Link()
|
/haiku/src/tests/system/boot/loader/file_systems/bfs/ |
H A D | Jamfile | 15 Link.cpp 27 Link.cpp 35 bfs.cpp Directory.cpp File.cpp Link.cpp Stream.cpp BPlusTree.cpp
|
/haiku/data/catalogs/preferences/appearance/ |
H A D | de.catkeys | 33 Link active Colors tab Link (geklickt) 51 Link text Colors tab Link Text 56 Link visited Colors tab Link (besucht) 79 Link hover Colors tab Link (unter Mauszeiger)
|
H A D | id.catkeys | 33 Link active Colors tab Link aktif 50 Link text Colors tab Link teks 55 Link visited Colors tab Tautan yang dikunjungi 78 Link hover Colors tab Link melayang
|
H A D | th.catkeys | 33 Link active Colors tab ลิงก์ใช้งานได้ 50 Link text Colors tab ลิงก์ข้อความ 55 Link visited Colors tab ลิงก์เข้าเยี่ยมชม 78 Link hover Colors tab Link hover
|
/haiku/src/system/kernel/vm/ |
H A D | VMKernelArea.h | 98 typedef DoublyLinkedListLink<VMKernelAddressRange> Link; typedef 100 inline Link* operator()(VMKernelAddressRange* range) const in operator() 105 inline const Link* operator()(const VMKernelAddressRange* range) const in operator()
|