Searched refs:fBusy (Results 1 - 10 of 10) sorted by relevance

/haiku/src/add-ons/kernel/bus_managers/usb/
H A DObject.cpp17 fBusy(0)
27 fBusy(0)
55 while (atomic_get(&fBusy) != 0 && retries--)
H A Dusb_private.h286 { atomic_add(&fBusy, busy ? 1 : -1); }
305 int32 fBusy; member in class:Object
/haiku/src/apps/diskusage/
H A DScanner.h36 { return fBusy ? NULL : fSnapshot; }
40 { return fBusy; }
46 { return fBusy ? NULL : fSnapshot->currentDir; }
73 bool fBusy; member in class:Scanner
H A DScanner.cpp37 fBusy(false),
73 if (fBusy)
76 fBusy = true;
94 if (!fBusy)
165 fBusy = false;
200 fBusy = false;
222 fBusy = false;
290 if (fBusy || fDesiredPath.size() <= 0)
/haiku/src/add-ons/kernel/network/stack/
H A Dinterfaces.h155 inline void SetBusy(bool busy) { atomic_set(&fBusy, busy ? 1 : 0); }
156 inline bool IsBusy() const { return atomic_get((int32*)&fBusy) == 1 ; }
172 int32 fBusy; member in class:Interface
H A Dinterfaces.cpp453 fBusy(false)
/haiku/src/servers/registrar/
H A DMessageDeliverer.cpp169 fBusy(false)
211 fBusy = busy;
216 return fBusy;
224 bool fBusy; member in class:MessageDeliverer::Message
/haiku/src/servers/index/
H A DVolumeWatcher.cpp257 fBusy(0)
280 return (atomic_get(&fBusy) != 0);
329 atomic_set(&fBusy, 1);
331 atomic_set(&fBusy, 0);
H A DVolumeWatcher.h74 int32 fBusy; member in class:VolumeWorker
/haiku/src/system/kernel/vm/
H A Dvm_page.cpp547 fBusy(page->busy),
572 fBusy ? 'b' : '-',
588 bool fBusy : 1;

Completed in 102 milliseconds