Searched refs:attributes (Results 26 - 50 of 173) sorted by relevance

1234567

/haiku/headers/private/kernel/arch/
H A Dvm_translation_map.h30 phys_addr_t pa, uint8 attributes,
/haiku/src/apps/terminal/
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 DBasicTerminalBuffer.cpp268 destLine->attributes = sourceLine->attributes;
290 && line->cells[column - 1].attributes.IsWidth();
296 Attributes& attributes) const
306 if (column > 0 && line->cells[column - 1].attributes.IsWidth())
311 attributes = cell.attributes;
318 Attributes& attributes, uint32& count) const
329 if (c > column && attributes != cell.attributes)
317 GetCellAttributes(int32 row, int32 column, Attributes& attributes, uint32& count) const argument
668 FillScreen(UTF8Char c, Attributes &attributes) argument
[all...]
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...]
H A DTermViewHighlight.h20 virtual uint32 AdjustTextAttributes(uint32 attributes);
/haiku/src/add-ons/kernel/drivers/ports/usb_serial/
H A DOption.cpp40 if (endpoint->descr->attributes == USB_ENDPOINT_ATTR_INTERRUPT
48 if (endpoint->descr->attributes == USB_ENDPOINT_ATTR_BULK) {
/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KVMTranslationMap040.h25 uint32 attributes, uint32 memoryType,
45 uint32 attributes, uint32 memoryType);
H A DM68KPagingMethod040.h33 uint8 attributes,
62 uint32 attributes);
66 uint32 attributes);
70 uint32 attributes, uint32 memoryType,
/haiku/src/system/kernel/arch/x86/paging/32bit/
H A DX86VMTranslationMap32Bit.h26 uint32 attributes, uint32 memoryType,
49 uint32 attributes, uint32 memoryType);
/haiku/src/system/kernel/arch/x86/paging/64bit/
H A DX86VMTranslationMap64Bit.h27 uint32 attributes, uint32 memoryType,
50 uint32 attributes, uint32 memoryType);
H A DX86PagingMethod64Bit.cpp126 phys_addr_t physicalAddress, uint8 attributes,
130 ", %#" B_PRIx8 ")\n", virtualAddress, physicalAddress, attributes);
203 PutPageTableEntryInTable(pte, physicalAddress, attributes, 0,
406 phys_addr_t physicalAddress, uint32 attributes, uint32 memoryType,
416 if ((attributes & B_USER_PROTECTION) != 0) {
418 if ((attributes & B_WRITE_AREA) != 0)
420 if ((attributes & B_EXECUTE_AREA) == 0
424 } else if ((attributes & B_KERNEL_WRITE_AREA) != 0)
125 MapEarly(kernel_args* args, addr_t virtualAddress, phys_addr_t physicalAddress, uint8 attributes, page_num_t (*get_free_page)(kernel_args*)) argument
405 PutPageTableEntryInTable(uint64* entry, phys_addr_t physicalAddress, uint32 attributes, uint32 memoryType, bool globalPage) argument
/haiku/src/kits/game/
H A DGameSoundDevice.h68 gs_attribute * attributes,
71 gs_attribute * attributes,
H A DGameSoundBuffer.h55 virtual status_t GetAttributes(gs_attribute * attributes,
57 virtual status_t SetAttributes(gs_attribute * attributes,
/haiku/src/add-ons/kernel/bus_managers/i2c/
H A DI2CModule.cpp27 device_attr attributes[] = { local
38 attributes, NULL, NULL);
/haiku/src/kits/mail/
H A DMailProtocol.cpp194 BMessage& attributes)
196 BMailFilterAction action = _ProcessHeaderFetched(ref, file, attributes);
198 file << attributes; local
206 BMessage& attributes)
208 _NotifyBodyFetched(ref, file, attributes);
209 file << attributes; local
215 BMessage& attributes)
217 BMailFilterAction action = _ProcessHeaderFetched(ref, file, attributes);
219 _NotifyBodyFetched(ref, file, attributes);
220 file << attributes; local
193 ProcessHeaderFetched(entry_ref& ref, BFile& file, BMessage& attributes) argument
205 NotifyBodyFetched(const entry_ref& ref, BFile& file, BMessage& attributes) argument
214 ProcessMessageFetched(entry_ref& ref, BFile& file, BMessage& attributes) argument
299 _ProcessHeaderFetched(entry_ref& ref, BFile& file, BMessage& attributes) argument
359 _NotifyBodyFetched(const entry_ref& ref, BFile& file, BMessage& attributes) argument
[all...]
/haiku/src/system/kernel/
H A DUserEvent.cpp242 CreateThreadEvent::CreateThreadEvent(const ThreadCreationAttributes& attributes) argument
244 fCreationAttributes(attributes),
247 // attributes.name is a pointer to a temporary buffer. Copy the name into
249 strlcpy(fThreadName, attributes.name, sizeof(fThreadName));
255 CreateThreadEvent::Create(const ThreadCreationAttributes& attributes) argument
257 return new(std::nothrow) CreateThreadEvent(attributes);
/haiku/headers/os/add-ons/mail_daemon/
H A DMailProtocol.h93 BFile& mail, BMessage& attributes);
95 BFile& mail, BMessage& attributes);
97 BFile& mail, BMessage& attributes);
111 BFile& mail, BMessage& attributes);
113 BFile& mail, BMessage& attributes);
/haiku/src/add-ons/kernel/partitioning_systems/gpt/
H A Dgpt.h96 uint64 attributes; member in struct:gpt_partition_entry
108 { attributes = B_HOST_TO_LENDIAN_INT64(_attributes); }
110 { return B_LENDIAN_TO_HOST_INT64(attributes); }
/haiku/src/system/kernel/arch/arm64/
H A DVMSAv8TranslationMap.h28 uint32 attributes, uint32 memoryType,
50 uint32 attributes, uint32 memoryType);
70 static uint64_t GetMemoryAttr(uint32 attributes, uint32 memoryType, bool isKernel);
/haiku/src/system/boot/loader/file_systems/hfs_plus/
H A Dhfs_plus.h34 uint32 attributes; member in struct:HFSPlus::hfs_volume_header
/haiku/headers/private/kernel/platform/efi/protocol/
H A Dedid.h30 uint32_t* attributes, size_t* edidSize, uint8_t** edid) EFIAPI;
/haiku/src/system/kernel/arch/x86/paging/pae/
H A DX86VMTranslationMapPAE.h29 uint32 attributes, uint32 memoryType,
52 uint32 attributes, uint32 memoryType);
/haiku/headers/private/kernel/
H A DUserEvent.h90 const ThreadCreationAttributes& attributes);
96 const ThreadCreationAttributes& attributes);
/haiku/src/system/kernel/arch/ppc/paging/460/
H A DPPCVMTranslationMap460.h34 uint32 attributes, uint32 memoryType,
60 uint32 attributes, uint32 memoryType);
/haiku/src/system/kernel/arch/ppc/paging/classic/
H A DPPCVMTranslationMapClassic.h34 uint32 attributes, uint32 memoryType,
60 uint32 attributes, uint32 memoryType);

Completed in 157 milliseconds

1234567