Searched refs:fData (Results 1 - 25 of 195) sorted by last modified time

12345678

/haiku/headers/private/net/
H A DNetBufferUtilities.h31 (void**)&fData);
35 fData = &fDataBuffer;
46 return *fData;
51 return fData;
56 return *fData;
64 if (fData == &fDataBuffer)
65 Module::Get()->write(fBuffer, Offset, fData, sizeof(Type));
77 Type* fData; member in class:NetBufferFieldReader
151 (void**)&this->fData);
152 if (this->fStatus == B_OK && this->fData
[all...]
/haiku/src/preferences/filetypes/
H A DIconView.h69 uint8* fData; member in class:Icon
H A DIconView.cpp156 fData(NULL),
166 fData(NULL),
177 free(fData);
257 if (fData != NULL || force)
258 status = info.SetIconForType(type, fData, fSize);
290 if (fData != NULL || force)
291 status = type.SetIcon(fData, fSize);
314 if (status == B_OK && fData != NULL)
315 status = message.AddData("icon", B_VECTOR_ICON_TYPE, fData, fSize);
356 free(fData);
[all...]
/haiku/headers/os/interface/
H A DFont.h119 uint64 fData[2]; member in class:unicode_block
346 fData[0] = fData[1] = 0LL;
352 fData[0] = block1;
353 fData[1] = block2;
360 return (fData[0] & block.fData[0]) == block.fData[0]
361 && (fData[1] & block.fData[
[all...]
/haiku/src/system/kernel/arch/x86/
H A Dmsi.cpp17 uint32* fData; member in struct:MSIConfiguration
66 sMSIConfigurations[vector].fData = data;
/haiku/src/tools/elfsymbolpatcher/
H A DElfFile.cpp72 uint8* GetData() const { return fData; }
88 uint8* fData; member in class:SymbolPatcher::ElfSection
95 fData(NULL)
197 if (fHeader && !fData && fHeader->sh_type != SHT_NULL
201 fData = new uint8[fHeader->sh_size];
202 if (!fData)
205 error = read_exactly(*file, fHeader->sh_offset, fData,
217 if (fData) {
218 delete[] fData;
219 fData
[all...]
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DHIDReportItem.h37 uint32 Data() { return fData; };
60 uint32 fData; member in class:HIDReportItem
/haiku/src/kits/debugger/dwarf/
H A DDataReader.h18 fData(NULL),
34 fData = (const uint8*)data;
48 return DataReader(fData, maxLength, fAddressSize, fIsBigEndian);
53 return DataReader(fData + relativeOffset, maxLength, fAddressSize, fIsBigEndian);
83 return fData;
103 fData += offset - Offset();
118 memcpy(&data, fData, sizeof(Type));
120 fData += sizeof(Type);
196 const char* string = (const char*)fData;
198 fData
236 const uint8* fData; member in class:DataReader
[all...]
H A DAbbreviationTable.h48 fData = fAttributesReader.Data();
67 const void* fData; member in struct:AbbreviationEntry
122 const uint8* fData; member in class:AbbreviationTable
H A DAbbreviationTable.cpp16 fData(NULL),
39 fData = (uint8*)section + fOffset;
47 DataReader abbrevReader(fData, fSize, 4, false);
73 entry.SetTo(code, fData + tableEntry->offset, tableEntry->size);
/haiku/src/kits/shared/
H A DJson.cpp193 fData(data),
216 return fData;
259 BDataIO* fData; member in class:BPrivate::JsonParseContext
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBitmapBlock.cpp29 fData(NULL),
46 fData = NULL;
57 fData = (uint32*)CachedBlock::SetToWritable(transaction, block, empty);
59 return fData != NULL;
66 const uint32* data = fData == NULL ? fReadOnlyData : fData;
140 if (fData == NULL || start + length > fNumBits)
154 uint32 bits = B_LENDIAN_TO_HOST_INT32(fData[startIndex]);
175 fData[startIndex] = B_HOST_TO_LENDIAN_INT32(bits);
188 uint32 bits = B_LENDIAN_TO_HOST_INT32(fData[inde
[all...]
/haiku/src/system/boot/loader/
H A Dmenu.cpp64 fData(NULL),
160 fData = data;
/haiku/src/system/kernel/debug/
H A Dcore_dump.cpp260 fData((addr_t)image->info.basic_info.data),
345 return fData;
443 addr_t fData; member in struct:__anon2::ImageInfo
/haiku/src/apps/resedit/
H A DResFields.cpp17 fData(data)
/haiku/src/bin/
H A Dxres.cpp172 delete[] fData;
177 data = fData;
185 fData = new uint8[size];
186 memcpy(fData, data, size);
190 fData = (uint8*)data;
197 uint8 *fData; member in struct:MemoryResourceDataSource
208 fData(NULL),
220 if (!fData) {
250 fData = new uint8[size];
252 ssize_t bytesRead = file.ReadAt(0, fData, fSiz
275 uint8 *fData; member in struct:FileResourceDataSource
[all...]
/haiku/src/kits/app/
H A DMessage.cpp46 find_thread(NULL), this, fHeader, fFields, fData, what, (char*)&what, \
226 if (other.fData != NULL)
227 fData = (uint8*)malloc(fHeader->data_size);
229 if (fData == NULL) {
233 } else if (other.fData != NULL)
234 memcpy(fData, other.fData, fHeader->data_size);
297 const char* name = (const char*)fData + field->offset;
306 const char* otherName = (const char*)other.fData
317 uint8* data = fData
[all...]
/haiku/src/build/libbe/app/
H A DMessage.cpp44 find_thread(NULL), this, fHeader, fFields, fData, what, (char *)&what, \
169 fData = (uint8 *)malloc(fHeader->data_size);
170 if (fData == NULL) {
175 memcpy(fData, other.fData, fHeader->data_size);
228 const char *name = (const char *)fData + field->offset;
237 const char *otherName = (const char *)other.fData
246 uint8 *data = fData + field->offset + field->name_length;
247 uint8 *otherData = other.fData + otherField->offset
281 fData
[all...]
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dkernel_interface.cpp161 uint8* Data() const { return fData; }
169 uint8* fData; member in class:Attribute
1011 fData(NULL),
1021 free(fData);
1057 if (user_memcpy(buffer, fData + offset, length) < B_OK)
1089 uint8* data = (uint8*)realloc(fData, end);
1096 fData = data;
1100 if (user_memcpy(fData + offset, buffer, length) < B_OK)
1112 free(fData);
1113 fData
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBlockAllocator.cpp105 fData(data),
117 fBlock, fData, fSum, fStart, fLength);
122 const uint8* fData; member in class:BFSBlockTracing::Block
/haiku/src/kits/locale/
H A DLocaleRoster.cpp131 fData(new(std::nothrow) BPrivate::LocaleRosterData(BLanguage("en_US"),
139 delete fData;
153 return fData->Refresh();
163 BAutolock lock(fData->fLock);
167 *timezone = fData->fDefaultTimeZone;
176 return &fData->fDefaultLocale;
202 BAutolock lock(fData->fLock);
206 *languages = fData->fPreferredLanguages;
357 BAutolock lock(fData->fLock);
362 status_t status = fData
[all...]
/haiku/src/bin/debug/strace/
H A DContext.h29 : fSyscall(sc), fData(data), fReader(reader),
39 return fData + param->Offset();
66 char *fData; member in class:Context
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DExtent.h85 OnDiskData fData; member in class:ExtentDataHeaderV4
117 OnDiskData fData; member in class:ExtentDataHeaderV5
/haiku/src/add-ons/kernel/bus_managers/usb/
H A Dusb_private.h718 { return fPhysical ? NULL : (uint8 *)fData.base; }
719 size_t DataLength() const { return fData.length; }
756 generic_io_vec fData; member in class:Transfer
H A DTransfer.cpp18 fVector(&fData),
41 if (fVector && fVector != &fData)
68 fData.base = (generic_addr_t)data;
69 fData.length = dataLength;
251 * to the bandwidth needed to transfer fData.iov_len bytes.
270 + (2.083 * ((uint32)(3.167 * (1.1667 * 8 * fData.length))))
274 + (2.083 * ((uint32)(3.167 * (1.1667 * 8 * fData.length))))
284 + (83.54 * ((uint32)(3.167 + (1.1667 * 8 * fData.length))))
288 + (83.54 * ((uint32)(3.167 + (1.1667 * 8 * fData.length))))
296 + (676.67 * ((uint32)(3.167 + (1.1667 * 8 * fData
[all...]

Completed in 126 milliseconds

12345678