Searched refs:sync (Results 1 - 25 of 181) sorted by relevance

12345678

/haiku-fatelf/src/bin/coreutils/man/
H A Dsync.x2 sync \- flush file system buffers
6 sync(2)
/haiku-fatelf/headers/build/os/drivers/
H A DSelect.h35 extern void notify_select_event(struct selectsync *sync, uint32 ref);
37 extern status_t notify_select_event(struct selectsync *sync, uint32 ref, uint8 event);
/haiku-fatelf/headers/private/kernel/fs/
H A Dselect_sync_pool.h19 status_t add_select_sync_pool_entry(select_sync_pool **pool, selectsync *sync,
22 selectsync *sync, uint8 event);
/haiku-fatelf/src/system/kernel/
H A Dwait_for_objects.cpp50 selectsync *sync; member in struct:select_sync_pool_entry
382 // create sync structure
383 select_sync* sync = new(nothrow) select_sync; local
384 if (sync == NULL)
386 ObjectDeleter<select_sync> syncDeleter(sync);
389 sync->set = new(nothrow) select_info[numFDs];
390 if (sync->set == NULL)
392 ArrayDeleter<select_info> setDeleter(sync->set);
395 sync->sem = create_sem(0, "select");
396 if (sync
416 put_select_sync(select_sync* sync) argument
450 select_sync* sync; local
550 select_sync* sync; local
628 select_sync* sync; local
730 notify_select_event(struct selectsync *sync, uint8 event) argument
740 find_select_sync_pool_entry(select_sync_pool *pool, selectsync *sync) argument
754 add_select_sync_pool_entry(select_sync_pool *pool, selectsync *sync, uint8 event) argument
777 add_select_sync_pool_entry(select_sync_pool **_pool, selectsync *sync, uint8 event) argument
804 remove_select_sync_pool_entry(select_sync_pool **_pool, selectsync *sync, uint8 event) argument
[all...]
H A Dshutdown.cpp31 sync();
/haiku-fatelf/headers/private/kernel/
H A Dwait_for_objects.h19 struct select_sync* sync; member in struct:select_info
39 extern void put_select_sync(select_sync* sync);
/haiku-fatelf/headers/os/drivers/
H A DSelect.h34 extern status_t notify_select_event(struct selectsync *sync, uint8 event);
/haiku-fatelf/src/system/libroot/posix/unistd/
H A Dsync.c26 sync(void) function
/haiku-fatelf/src/system/kernel/device_manager/
H A DBaseDevice.cpp103 BaseDevice::Select(void* cookie, uint8 event, selectsync* sync) argument
110 BaseDevice::Deselect(void* cookie, uint8 event, selectsync* sync) argument
H A DAbstractModuleDevice.cpp97 AbstractModuleDevice::Select(void* cookie, uint8 event, selectsync* sync) argument
99 return Module()->select(cookie, event, sync);
104 AbstractModuleDevice::Deselect(void* cookie, uint8 event, selectsync* sync) argument
106 return Module()->deselect(cookie, event, sync);
H A DAbstractModuleDevice.h41 virtual status_t Select(void* cookie, uint8 event, selectsync* sync);
43 selectsync* sync);
H A DBaseDevice.h43 virtual status_t Select(void* cookie, uint8 event, selectsync* sync);
45 selectsync* sync);
H A DFileDevice.h42 virtual status_t Select(void* cookie, uint8 event, selectsync* sync);
44 selectsync* sync);
/haiku-fatelf/3rdparty/mmu_man/scripts/
H A Dbootstrap-haiku.sh57 sync
59 sync
62 sync
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/kernel_add_on/
H A DFileSystem.h49 status_t AddSelectSyncEntry(selectsync* sync);
50 void RemoveSelectSyncEntry(selectsync* sync);
51 bool KnowsSelectSyncEntry(selectsync* sync);
/haiku-fatelf/src/tools/fs_shell/
H A Dfd.h32 uint32_t ref, struct select_sync *sync);
34 struct select_sync *sync);
90 struct select_sync *sync, bool kernel);
92 struct select_sync *sync, bool kernel);
/haiku-fatelf/data/system/boot/
H A DBootscript.cd57 # sync disks
58 /bin/sync
/haiku-fatelf/headers/os/drivers/tty/
H A Dtty_module.h64 uint32 ref, selectsync *sync);
66 selectsync *sync);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/stress/threads/pthread_kill/
H A Dstress.c173 int sync; variable
177 sync = 1;
212 sync = 0;
222 for ( ret = 0; ( ret < 5 ) && ( sync == 0 ); ret++ )
226 if ( sync == 0 )
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.h94 status_t AddSelectSyncEntry(selectsync* sync);
95 void RemoveSelectSyncEntry(selectsync* sync);
96 bool KnowsSelectSyncEntry(selectsync* sync);
/haiku-fatelf/src/libs/stdc++/legacy/
H A Dindstream.cc109 int indirectbuf::sync() function in class:indirectbuf
112 int get_ret_val = gbuf ? gbuf->sync() : 0;
114 int put_ret_val = (pbuf && pbuf != gbuf) ? pbuf->sync() : 0;
/haiku-fatelf/src/add-ons/kernel/drivers/tty/
H A Dmaster.cpp190 master_select(void *_cookie, uint8 event, uint32 ref, selectsync *sync) argument
194 return tty_select(cookie, event, ref, sync);
199 master_deselect(void *_cookie, uint8 event, selectsync *sync) argument
203 return tty_deselect(cookie, event, sync);
H A Dslave.cpp205 slave_select(void *_cookie, uint8 event, uint32 ref, selectsync *sync) argument
209 return tty_select(cookie, event, ref, sync);
214 slave_deselect(void *_cookie, uint8 event, selectsync *sync) argument
218 return tty_deselect(cookie, event, sync);
/haiku-fatelf/src/apps/cortex/NodeManager/
H A DNodeSyncThread.h42 // Sync-notice requests (via the +++++ sync() operation)
86 // trigger a sync operation: when 'perfTime' arrives
88 // position value will be sent, unless the sync operation
90 status_t sync(
/haiku-fatelf/src/bin/coreutils/src/
H A Dsync.c0 /* sync - update the superblock
29 #define PROGRAM_NAME "sync"
72 sync ();

Completed in 152 milliseconds

12345678