Searched refs:attributes (Results 1 - 25 of 173) sorted by last modified time

1234567

/haiku/src/system/boot/platform/bios_ia32/
H A Dvideo.cpp489 modeInfo.width, modeInfo.height, modeInfo.bits_per_pixel, modeInfo.attributes,
507 && (modeInfo.attributes & requiredAttributes)
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPFolder.cpp119 // Initialize from folder attributes
286 // Update mail message attributes
287 BMessage attributes; local
288 _IMAPToMailFlags(nextFlags, attributes);
289 node << attributes; local
374 BMessage attributes; local
375 _IMAPToMailFlags(flags, attributes);
377 fProtocol.MessageStored(*this, ref, file, fetchFlags, attributes);
461 BMessage attributes; local
462 fProtocol.MessageStored(*this, ref, file, IMAP::kFetchBody, attributes);
640 _IMAPToMailFlags(uint32 flags, BMessage& attributes) argument
[all...]
/haiku/src/system/kernel/device_manager/
H A Ddevice_manager.cpp156 int CompareTo(const device_attr* attributes) const;
157 device_node* FindChild(const device_attr* attributes) const;
672 get_next_child_node(device_node* parent, const device_attr* attributes, argument
695 if (!node->CompareTo(attributes)) {
929 find_child_node(device_node* parent, const device_attr* attributes, argument
946 else if (!node->CompareTo(attributes) && *_lastFound) {
954 if (find_child_node(node, attributes, _node, _lastFound) == B_OK)
963 find_child_node(device_node* parent, const device_attr* attributes, argument
968 status_t status = find_child_node(parent, attributes, _node, &lastFound);
1002 // attributes
[all...]
/haiku/src/apps/terminal/
H A DTermViewStates.cpp807 TermView::HyperLinkState::AdjustTextAttributes(uint32 attributes) argument
809 return attributes | UNDERLINE;
H A DTerminalLine.h197 Attributes attributes; member in struct:TerminalCell
202 return (attributes.state & CHAR_ATTRIBUTES)
204 || attributes.foreground != other.foreground
205 || attributes.background != other.background;
213 Attributes attributes; member in struct:TerminalLine
229 attributes = attr;
232 cells[i].attributes = attr;
238 Attributes attributes; member in struct:AttributesRun
249 Attributes attributes; member in struct:HistoryLine
H A DTermParse.cpp784 Attributes attributes = fBuffer->GetAttributes(); local
789 attributes.Reset();
794 attributes |= BOLD;
802 attributes.UnsetUnder();
805 attributes.SetUnder(SINGLE_UNDERLINE);
808 attributes.SetUnder(DOUBLE_UNDERLINE);
811 attributes.SetUnder(CURLY_UNDERLINE);
814 attributes.SetUnder(DOTTED_UNDERLINE);
817 attributes.SetUnder(DASHED_UNDERLINE);
824 attributes
[all...]
/haiku/src/apps/devices/
H A DDevicesView.cpp231 Attributes attributes; local
234 // Copy all its attributes,
264 attributes.push_back(Attribute(attr.name, attrString));
268 for (unsigned int i = 0; i < attributes.size(); i++) {
270 if (attributes[i].fName == B_DEVICE_PRETTY_NAME
271 && attributes[i].fValue == "Devices Root") {
278 if (attributes[i].fName == B_DEVICE_PRETTY_NAME
279 && attributes[i].fValue == "ACPI") {
286 if (attributes[i].fName == B_DEVICE_PRETTY_NAME
287 && attributes[
[all...]
/haiku/src/add-ons/kernel/drivers/disk/nvme/
H A Dnvme_disk.cpp909 dsmRanges[i].attributes = 0;
/haiku/src/system/kernel/vm/
H A Dvm.cpp4288 uint32 attributes, addr_t alignment)
4310 physicalAddress * B_PAGE_SIZE, attributes,
4287 vm_allocate_early(kernel_args* args, size_t virtualSize, size_t physicalSize, uint32 attributes, addr_t alignment) argument
/haiku/src/bin/listusb/
H A Dusb_audio.cpp691 descriptor->attributes);
693 const char* attributes[] = { local
701 for (uint8 i = 0; i < sizeof(attributes) / sizeof(attributes[0]); i++) {
702 if ((descriptor->attributes & mask) != 0)
703 printf("%s ", attributes[i]);
H A Dlistusb.cpp50 descriptor->attributes);
/haiku/src/add-ons/kernel/drivers/audio/usb/
H A DAudioStreamingInterface.cpp79 fCSAttributes = Descriptor->attributes;
84 fEndpointAttributes = Endpoint->attributes;
/haiku/src/add-ons/kernel/drivers/disk/usb/usb_disk/
H A Dusb_disk.cpp1080 && endpoint->descr->attributes == USB_ENDPOINT_ATTR_BULK) {
1085 && endpoint->descr->attributes == USB_ENDPOINT_ATTR_BULK) {
1090 && endpoint->descr->attributes
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.cpp321 // attributes, too?
322 || attributes.AllocationGroup() > int32(volume->AllocationGroups())
323 || attributes.AllocationGroup() < 0
324 || attributes.Start() > (1L << volume->AllocationGroupShift()))
536 // #pragma mark - attributes
556 attributes to real files. Used for system attributes like the name.
606 Inode* attributes; local
607 if (vnode.Get(&attributes) < B_OK
608 || attributes
993 Inode* attributes; local
1316 Inode* attributes; local
1369 Inode* attributes; local
[all...]
/haiku/
H A Dconfigure89 attributes as Haiku attributes. If they are still
93 attributes for Haiku extended attributes at all,
444 # Checks the host platform's support for extended attributes.
475 echo "$0: could not find $xattr_set, assuming host has no extended attributes"
478 echo "$0: could not find $xattr_get, assuming host has no extended attributes"
493 echo "$0: warning: could not generate test data for extended attributes"
538 HAIKU_BUILD_ATTRIBUTES_DIR="$outputDir/attributes"
/haiku/src/add-ons/mail_daemon/inbound_filters/notifier/
H A DNotifierFilter.cpp37 BFile& file, BMessage& attributes);
58 BMessage& attributes)
57 HeaderFetched(entry_ref& ref, BFile& file, BMessage& attributes) argument
/haiku/src/add-ons/kernel/bus_managers/virtio/
H A DVirtioModule.cpp221 device_attr attributes[] = { local
230 attributes, NULL, NULL);
/haiku/src/system/kernel/arch/riscv64/
H A Darch_vm_translation_map.cpp165 addr_t virtAdr, phys_addr_t physAdr, uint8 attributes,
170 .isRead = (attributes & B_KERNEL_READ_AREA) != 0,
171 .isWrite = (attributes & B_KERNEL_WRITE_AREA) != 0,
172 .isExec = (attributes & B_KERNEL_EXECUTE_AREA) != 0,
164 arch_vm_translation_map_early_map(kernel_args *args, addr_t virtAdr, phys_addr_t physAdr, uint8 attributes, phys_addr_t (*get_free_page)(kernel_args *)) argument
H A DRISCV64VMTranslationMap.h38 uint32 attributes, uint32 memoryType,
61 uint32 attributes, uint32 memoryType);
63 uint32 attributes);
65 uint32 attributes);
H A DRISCV64VMTranslationMap.cpp316 uint32 attributes, uint32 memoryType,
334 if ((attributes & B_USER_PROTECTION) != 0) {
336 if ((attributes & B_READ_AREA) != 0)
338 if ((attributes & B_WRITE_AREA) != 0)
340 if ((attributes & B_EXECUTE_AREA) != 0) {
345 if ((attributes & B_KERNEL_READ_AREA) != 0)
347 if ((attributes & B_KERNEL_WRITE_AREA) != 0)
349 if ((attributes & B_KERNEL_EXECUTE_AREA) != 0) {
693 uint32 attributes, uint32 memoryType)
715 if ((attributes
315 Map(addr_t virtualAddress, phys_addr_t physicalAddress, uint32 attributes, uint32 memoryType, vm_page_reservation* reservation) argument
692 Protect(addr_t base, addr_t top, uint32 attributes, uint32 memoryType) argument
742 ProtectPage(VMArea* area, addr_t address, uint32 attributes) argument
751 ProtectArea(VMArea* area, uint32 attributes) argument
[all...]
/haiku/src/system/kernel/
H A Dthread.cpp577 // kernel only attributes (not in thread_creation_attributes):
879 \param attributes The thread creation attributes, specifying the team in
887 thread_create_thread(const ThreadCreationAttributes& attributes, bool kernel)
891 TRACE(("thread_create_thread(%s, thread = %p, %s)\n", attributes.name,
892 attributes.thread, kernel ? "kernel" : "user"));
895 Team* team = Team::Get(attributes.team);
901 // a new thread object with the given attributes.
902 Thread* thread = attributes.thread;
906 status = Thread::Create(attributes
[all...]
/haiku/headers/private/system/
H A Dsyscalls.h164 struct thread_creation_attributes* attributes);
/haiku/headers/private/kernel/
H A Dthread.h125 thread_id thread_create_thread(const ThreadCreationAttributes& attributes,
146 thread_id _user_spawn_thread(struct thread_creation_attributes* attributes);
/haiku/src/add-ons/kernel/drivers/bluetooth/h2/h2generic/
H A Dh2generic.cpp323 switch (ep->descr->attributes & USB_ENDPOINT_ATTR_MASK) {
/haiku/src/system/boot/loader/file_systems/bfs/
H A DStream.cpp456 // attributes, too?
457 || attributes.AllocationGroup() > int32(volume->AllocationGroups())
458 || attributes.AllocationGroup() < 0
459 || attributes.Start() > (1L << volume->AllocationGroupShift()))

Completed in 276 milliseconds

1234567