Searched refs:change (Results 1 - 25 of 40) sorted by relevance

12

/haiku/3rdparty/kallisti5/
H A Dunmatched-uboot.sh26 --new=1:34:2081 --change-name=1:spl --typecode=1:5B193300-FC78-40CD-8002-E86C45580B47 \
27 --new=2:2082:10273 --change-name=2:uboot --typecode=2:2E54B353-1271-4842-806F-E436D6AF6985 \
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DDirectoryCache.h63 inline status_t ValidateChangeInfo(uint64 change);
64 inline void SetChangeInfo(uint64 change);
135 DirectoryCache::ValidateChangeInfo(uint64 change) argument
137 if (fTrashed || change != fChange) {
139 fChange = change;
151 DirectoryCache::SetChangeInfo(uint64 change) argument
154 fChange = change;
H A DReplyBuilder.h26 uint64 size, uint64 change);
H A DNFS4Inode.h25 status_t GetChangeInfo(uint64* change, bool attrDir = false);
33 status_t LookUp(const char* name, uint64* change, uint64* fileID,
74 OpenDirCookie* cookie, bool* eof, uint64* change,
H A DReplyBuilder.cpp63 ReplyBuilder::GetAttr(status_t status, int mask, uint64 size, uint64 change) argument
83 str.AddUHyper(change);
H A DNFS4Server.cpp393 uint64 change; local
394 change = delegation->GetInode()->Change();
396 change++;
397 reply->GetAttr(B_OK, mask, st.st_size, change);
H A DDirectoryCache.cpp256 uint64 change;
257 if (fInode->GetChangeInfo(&change, fAttrDir) != B_OK) {
262 if (change == fChange) {
H A DInodeDir.cpp99 ChangeInfo change; local
104 &change, NULL, &handle, true);
233 uint64 change = 0;
242 status_t result = ReadDirOnce(&dirents, &count, cookie, &eof, &change,
297 *_change = change;
H A DNFS4Inode.cpp19 NFS4Inode::GetChangeInfo(uint64* change, bool attrDir) argument
21 ASSERT(change != NULL);
55 *change = values[0].fData.fValue64;
121 NFS4Inode::LookUp(const char* name, uint64* change, uint64* fileID, argument
135 if (change != NULL) {
164 if (change != NULL) {
169 *change = values[0].fData.fValue64;
958 bool* eof, uint64* change, uint64* dirCookie, uint64* dirCookieVerf,
977 if (*change == 0)
999 if (*change
957 ReadDirOnce(DirEntry** dirents, uint32* count, OpenDirCookie* cookie, bool* eof, uint64* change, uint64* dirCookie, uint64* dirCookieVerf, bool attribute) argument
[all...]
H A DInode.cpp165 uint64 change;
166 status_t result = GetChangeInfo(&change);
171 if (change == fChange)
184 change = fChange;
198 uint64 change;
201 status_t result = NFS4Inode::LookUp(name, &change, &fileID, &handle);
214 fCache->SetChangeInfo(change);
216 fCache->ValidateChangeInfo(change);
/haiku/src/apps/diskprobe/
H A DDataEditor.cpp54 virtual bool Merge(DataChange *change);
65 virtual bool Merge(DataChange *change);
184 DataChange::Merge(DataChange *change) argument
244 // don't change anything outside the supplied buffer
273 // don't change anything outside the supplied buffer
295 ReplaceChange *change = dynamic_cast<ReplaceChange *>(_change); local
296 if (change == NULL)
299 if (change->fOffset + change->fSize == fOffset + fSize
300 && change
546 AddChange(DataChange *change) argument
589 ReplaceChange *change = new ReplaceChange(offset, data, length); local
642 DataChange *change = fChanges.ItemAt(i); local
651 DataChange *change = fChanges.ItemAt(i); local
696 DataChange *change = fChanges.ItemAt(i); local
768 DataChange *change = fChanges.RemoveItemAt(i); local
1209 SendNotices(DataChange *change) argument
[all...]
H A DDataEditor.h109 void SendNotices(DataChange* change);
111 void AddChange(DataChange* change);
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DHub.cpp161 if ((fPortStatus[index].change & PORT_STATUS_RESET) != 0
168 if ((fPortStatus[index].change & PORT_STATUS_RESET) == 0
171 fPortStatus[index].change, fPortStatus[index].status);
175 // clear the reset change
207 if (fPortStatus[i].change) {
208 TRACE("port %" B_PRId32 ": status: 0x%04x; change: 0x%04x\n", i,
209 fPortStatus[i].status, fPortStatus[i].change);
216 if ((fPortStatus[i].change & PORT_STATUS_CONNECTION)
219 // clear status change
321 if (fPortStatus[i].change
[all...]
H A Dusbspec_private.h88 uint16 change; member in struct:usb_port_status
H A DBusManager.cpp315 BusManager::NotifyPipeChange(Pipe *pipe, usb_change change) argument
/haiku/src/preferences/time/
H A DDateTimeView.cpp84 int32 change; local
87 message->FindInt32(B_OBSERVE_WHAT_CHANGE, &change);
88 switch (change) {
H A DAnalogClock.cpp66 int32 change; local
69 message->FindInt32(B_OBSERVE_WHAT_CHANGE, &change);
70 switch (change) {
H A DZoneView.cpp148 int32 change; local
149 message->FindInt32(B_OBSERVE_WHAT_CHANGE, &change);
150 switch(change) {
/haiku/src/build/libbe/app/
H A DMessage.cpp1153 BMessage::_ResizeData(uint32 offset, int32 change) argument
1155 if (change == 0)
1163 field->offset += change;
1167 if (change > 0) {
1168 if (fDataAvailable >= (uint32)change) {
1170 memmove(fData + offset + change, fData + offset,
1174 fDataAvailable -= change;
1175 fHeader->data_size += change;
1181 size = max_c(size, fHeader->data_size + change);
1189 memmove(fData + offset + change, fDat
1411 int32 change = numBytes + sizeof(uint32); local
1584 int32 change = numBytes - currentSize; local
[all...]
/haiku/src/kits/tracker/
H A DFSClipboard.cpp463 // add the change to the update message (if necessary)
552 bool change = false; local
568 change = true;
572 change = true;
579 change = true;
585 if (change)
H A DUtilities.cpp501 float change = 1.f / (to - from); local
509 float alpha = change > 0 ? 0.0f : 1.0f;
516 alpha += change;
538 float change = 1.f / (to - from); local
545 float alpha = change > 0 ? 0.0f : 1.0f;
554 alpha += change;
/haiku/src/kits/app/
H A DMessage.cpp1112 often the one receiving the message will not need to change the message
1546 BMessage::_UpdateOffsets(uint32 offset, int32 change) argument
1553 field->offset += change;
1560 BMessage::_ResizeData(uint32 offset, int32 change) argument
1562 if (change == 0)
1567 if (change > 0) {
1570 if (fDataAvailable >= (uint32)change) {
1574 memmove(fData + offset + change, fData + offset,
1578 _UpdateOffsets(offset, change);
1580 fDataAvailable -= change;
1835 int32 change = numBytes + sizeof(uint32); local
2018 int32 change = numBytes - currentSize; local
[all...]
/haiku/src/kits/interface/
H A DScrollView.cpp485 float change = 0; local
492 change = border != B_NO_BORDER ? -1 : 1;
494 change *= 2;
515 fHorizontalScrollBar->ResizeBy(resize + horizontalGap - change, 0);
519 fVerticalScrollBar->ResizeBy(0, resize + verticalGap - change);
/haiku/src/bin/listusb/
H A Dlistusb.cpp224 index, portStatus.status, portStatus.change,
/haiku/src/add-ons/kernel/busses/usb/
H A Dehci.h75 usb_change change);

Completed in 673 milliseconds

12