Searched refs:fLength (Results 1 - 25 of 53) sorted by path

123

/haiku/headers/os/support/
H A DDataIO.h119 size_t fLength; member in class:BMemoryIO
158 size_t fLength; member in class:BMallocIO
/haiku/headers/private/debugger/model/
H A DWatchpoint.h23 int32 Length() const { return fLength; }
46 int32 fLength; member in class:Watchpoint
/haiku/headers/private/shared/
H A DHashString.h47 int32 GetLength() const { return fLength; }
59 int32 fLength; member in class:BPrivate::HashString
/haiku/headers/private/userlandfs/shared/
H A DString.h48 int32 GetLength() const { return fLength; }
60 int32 fLength; member in class:UserlandFSUtil::String
/haiku/src/add-ons/kernel/debugger/demangle/
H A Dgcc2.cpp34 fLength(length)
45 return fLength;
50 if (count > fLength) {
51 TRACE("Input::Skip(): fOffset > fLength\n");
52 fString += fLength;
53 fLength = 0;
58 fLength -= count;
75 if (index >= fLength) {
76 TRACE("Input::operator[](): fOffset + index >= fLength\n");
85 size_t fLength; member in class:Input
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DPath.cpp14 fLength(0)
64 fLength = wholeLen;
75 if (fLength == 0)
84 bool insertSeparator = (fBuffer[fLength - 1] != '/' && leaf[0] != '/');
87 int32 wholeLen = fLength + leafLen + (insertSeparator ? 1 : 0);
94 fBuffer[fLength++] = '/';
98 memcpy(fBuffer + fLength, leaf, leafLen + 1);
100 fLength = wholeLen;
108 return (fLength == 0 ? NULL : fBuffer);
115 return fLength;
[all...]
H A DPath.h26 int32 fLength; member in class:Path
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DCookie.cpp57 return fStart == start && (fLength == length
58 || (eof && fLength == UINT64_MAX));
66 && fLength == lock.fLength && fType == lock.fType;
H A DCookie.h44 uint64 fLength; member in struct:LockInfo
H A DInode.cpp758 linfo->fLength = UINT64_MAX;
760 linfo->fLength = lock->l_len;
/haiku/src/add-ons/kernel/file_systems/packagefs/util/
H A DStringPool.h29 fLength(length),
41 return fLength;
51 size_t fLength; member in class:StringDataKey
/haiku/src/add-ons/kernel/file_systems/udf/
H A DDString.cpp15 fLength(0),
24 fLength(0),
36 fLength(0),
49 fLength(0),
69 fLength = ref.Length();
70 memcpy(fString, ref.String(), fLength);
133 fLength = 0;
H A DDString.h31 uint8 Length() const { return fLength; }
43 uint8 fLength; member in class:DString
H A DPhysicalPartition.cpp12 fLength(length)
35 if (logicalBlock >= fLength) {
37 ",length = %" B_PRIu32 "\n", logicalBlock, fLength));
H A DSparablePartition.cpp17 fLength(length),
58 if (logicalBlock >= fLength)
H A DVolume.cpp27 fLength(0),
241 fLength = length;
372 fLength = 0;
H A DVolume.h48 off_t Length() const { return fLength; }
69 off_t fLength; member in class:Volume
/haiku/src/apps/resedit/
H A DResourceData.cpp19 fLength(0),
32 fLength(length),
62 SetData(data.fData, data.fLength);
72 (const char **)&name, &fLength)) {
81 char *data = (char *)res.LoadResource(fType, fID, &fLength);
82 SetData(data, fLength);
101 fLength = info.size;
106 fData = (char *)malloc(fLength);
108 ssize_t size = node.ReadAttr(name, info.type, 0, (void*)fData, fLength);
110 fLength
[all...]
H A DResourceData.h44 size_t GetLength(void) const { return fLength; }
57 size_t fLength; member in class:ResourceData
/haiku/src/kits/debugger/debugger_interface/remote/
H A DRemoteDebugRequest.cpp701 fLength(0)
717 fLength = length;
740 return data.FindInt32("length", &fLength);
756 return _output.AddInt32("length", fLength);
H A DRemoteDebugRequest.h351 int32 Length() const { return fLength; }
364 int32 fLength; member in class:RemoteDebugInstallWatchpointRequest
/haiku/src/kits/debugger/model/
H A DWatchpoint.cpp13 fLength(length),
42 return address >= fAddress && address <= (fAddress + fLength);
/haiku/src/kits/interface/textview_support/
H A DInlineInput.cpp34 fLength(0),
80 return fLength;
91 fLength = len;
H A DInlineInput.h51 int32 fLength; member in class:BTextView::InlineInput
/haiku/src/kits/shared/
H A DHashString.cpp17 : fLength(0),
24 : fLength(0),
32 : fLength(0),
65 fLength = 0;
74 if (newLength < fLength) {
79 fLength = newLength;
80 fString[fLength] = '\0';
100 _SetTo(string.fString, string.fLength);
108 return (fLength == string.fLength
[all...]

Completed in 231 milliseconds

123