Searched refs:modified (Results 1 - 25 of 36) sorted by relevance

12

/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DLastModifiedIndex.cpp20 LastModifiedIndexPrimaryKey(Node *node, time_t modified) argument
21 : node(node), modified(modified) {}
23 : node(node), modified(node->GetMTime()) {}
24 LastModifiedIndexPrimaryKey(time_t modified) argument
25 : node(NULL), modified(modified) {}
28 time_t modified; member in class:LastModifiedIndexPrimaryKey
54 if (a.modified < b.modified)
314 SetTo(LastModifiedIndex *index, time_t modified, bool ignoreValue) argument
[all...]
H A DNode.h141 uint32 modified = fModified; local
142 if (modified) {
147 return modified;
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DLastModifiedIndex.cpp27 LastModifiedIndexPrimaryKey(Node* node, time_t modified) argument
30 modified(modified)
37 modified(node->ModifiedTime().tv_sec)
41 LastModifiedIndexPrimaryKey(time_t modified) argument
44 modified(modified)
49 time_t modified; member in class:LastModifiedIndexPrimaryKey
80 if (a.modified < b.modified)
[all...]
/haiku/headers/private/kernel/arch/m68k/
H A Darch_mmu.h93 uint32 modified : 1;
105 uint32 modified : 1;
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DIndex.cpp357 off_t modified = inode->LastModified(); local
359 (uint8*)&modified, sizeof(int64), inode);
369 off_t modified = inode->OldLastModified(); local
371 (uint8*)&modified, sizeof(int64), NULL, 0, inode);
377 bigtime_t modified)
382 if (modified == -1)
383 modified = bfs_inode::ToInode(real_time_clock_usecs());
386 (uint8*)&oldModified, sizeof(int64), (uint8*)&modified,
389 inode->Node().last_modified_time = HOST_ENDIAN_TO_BFS_INT64(modified);
391 // modified fiel
376 UpdateLastModified(Transaction& transaction, Inode* inode, bigtime_t modified) argument
[all...]
H A DIndex.h54 Inode* inode, bigtime_t modified = -1);
/haiku/headers/private/storage/
H A DResourcesContainer.h66 void SetModified(bool modified);
H A DResourceItem.h73 void SetModified(bool modified);
/haiku/src/apps/terminal/
H A DAppearPrefView.cpp185 bool modified = false; local
214 modified = true;
227 modified = true;
231 modified = true;
242 modified = true;
251 modified = true;
260 modified = true;
269 modified = true;
279 modified = true;
291 modified
[all...]
H A DThemeView.cpp282 bool modified = false; local
291 modified = true;
306 modified = true;
319 modified = true;
329 modified = true;
356 if (modified) {
/haiku/src/kits/storage/
H A DResourceItem.cpp176 ResourceItem::SetModified(bool modified) argument
178 fIsModified = modified;
H A DResourcesContainer.cpp188 ResourcesContainer::SetModified(bool modified) argument
190 fIsModified = modified;
191 // If unmodified, set the resource item's modified flag as well.
192 if (!modified) {
/haiku/src/system/kernel/vm/
H A DVMTranslationMap.cpp86 accessed and modified flags don't need to be propagated.
158 bool accessed, bool modified, bool updatePageQueue)
168 ", accessed: %d, modified: %d", pageNumber, accessed, modified);
172 page->modified |= modified;
187 B_PRIxPHYSADDR ", accessed: %d, modified: %d", page,
188 pageNumber, accessed, modified);
200 else if (page->modified)
157 PageUnmapped(VMArea* area, page_num_t pageNumber, bool accessed, bool modified, bool updatePageQueue) argument
/haiku/src/bin/
H A Dlsindex.cpp118 char modified[30]; local
119 strftime(modified, 30, "%m/%d/%Y %I:%M %p",
122 print_index_type(info, false), modified, info.size, name);
/haiku/src/kits/mail/
H A DMailComponent.cpp697 BString modified = this->text; local
713 raw = modified.LockBuffer((alt.Length() * 3) + 1);
729 modified.UnlockBuffer(len);
732 modified.ReplaceAll("\n","\r\n");
737 char* string = modified.LockBuffer(modified.Length());
738 for (int32 i = modified.Length(); i-- > 0;) {
745 modified.UnlockBuffer();
754 // for (int32 i = 0; i < modified.Length(); i++) {
755 // if (isspace(modified
[all...]
/haiku/src/apps/stylededit/
H A DStatusView.cpp222 bool modified = false; local
225 if (B_OK == message->FindBool("modified", &modified) && modified) {
/haiku/src/system/kernel/arch/ppc/paging/classic/
H A DPPCVMTranslationMapClassic.cpp672 bool modified = entry->changed; local
681 PageUnmapped(area, pageNumber, accessed, modified, updatePageQueue);
727 // entry. We can obviously lose a modified flag in this case, with the
729 // but is actually modified.
812 page->modified = true;
839 else if (page->modified)
943 page->modified = true;
950 else if (page->modified)
1176 bool modified = false;
1181 modified
[all...]
/haiku/src/system/kernel/arch/ppc/paging/460/
H A DPPCVMTranslationMap460.cpp672 bool modified = entry->changed; local
681 PageUnmapped(area, pageNumber, accessed, modified, updatePageQueue);
727 // entry. We can obviously lose a modified flag in this case, with the
729 // but is actually modified.
812 page->modified = true;
839 else if (page->modified)
943 page->modified = true;
950 else if (page->modified)
1176 bool modified = false;
1181 modified
[all...]
/haiku/src/apps/mail/
H A DWIndex.cpp90 time_t modified; local
101 if ((indexFile.GetAttrInfo("WINDEX:modified", &info)
103 indexFile.ReadAttr("WINDEX:modified", B_UINT32_TYPE, 0,
104 &modified, 4);
106 if (mtime == modified) {
121 indexFile.WriteAttr("WINDEX:modified", B_UINT32_TYPE, 0,
/haiku/headers/private/kernel/vm/
H A DVMTranslationMap.h87 bool modified, bool updatePageQueue);
/haiku/src/system/kernel/arch/x86/paging/32bit/
H A DX86VMTranslationMap32Bit.cpp367 // entry. We can obviously lose a modified flag in this case, with the
369 // but is actually modified.
449 page->modified = true;
476 else if (page->modified)
577 page->modified = true;
584 else if (page->modified)
/haiku/src/system/kernel/arch/x86/paging/64bit/
H A DX86VMTranslationMap64Bit.cpp374 // entry. We can obviously lose a modified flag in this case, with the
376 // but is actually modified.
451 page->modified = true;
478 else if (page->modified)
573 page->modified = true;
580 else if (page->modified)
/haiku/src/system/kernel/arch/arm/paging/32bit/
H A DARMVMTranslationMap32Bit.cpp384 // entry. We can obviously lose a modified flag in this case, with the
386 // but is actually modified.
466 page->modified = true;
493 else if (page->modified)
594 page->modified = true;
601 else if (page->modified)
/haiku/src/system/kernel/arch/riscv64/
H A DRISCV64VMTranslationMap.cpp84 if (page->modified)
398 update vm_page::accessed, modified
483 page->modified = oldPte.isDirty;
510 else if (page->modified)
602 page->modified = true;
610 } else if (page->modified) {
773 // setting accessed/modified flags by hardware.
/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KVMTranslationMap040.cpp483 // entry. We can obviously lose a modified flag in this case, with the
485 // but is actually modified.
587 page->modified = true;
614 else if (page->modified)
730 page->modified = true;
737 else if (page->modified)

Completed in 722 milliseconds

12