Searched refs:sync (Results 26 - 49 of 49) sorted by relevance

12

/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dproc_reg.h232 /* Use sync to ensure previous stores have completed.
238 #define sync() \ macro
239 __asm__ volatile("sync")
H A Dlowmem_vectors.s163 sync
170 sync
176 sync
192 sync
195 sync
206 sync ; ?
944 sync
1011 sync ; Make sure it all goes
1081 sync
1129 sync ; Mak
[all...]
H A DFirmwareC.c328 sync();
H A Dcpu.c360 __asm__ volatile("sync"); /* Commit to storage */
461 __asm__ volatile("sync");
561 __asm__ volatile("sync"); /* Make sure it's all there */
768 sync();
777 sync(); /* Force order */
H A Dcswtch.s427 la r5,FPUsync(r3) ; Point to the sync word
455 fssync1: lwarx r7,0,r5 ; Get the sync word
518 STRINGD "fpu_save: timeout on sync lock (0x%08X), value = 0x%08X\n\000"
582 la r15,FPUsync(r22) ; Point to the sync word
640 fswsync1: lwarx r19,0,r15 ; Get the sync word
727 fsnosave: la r15,FPUsync(r29) ; Point to the sync word
746 fsnsync1: lwarx r19,0,r15 ; Get the sync word
873 lwz r11,spcFlags(r26) ; Get per_proc spec flags cause not in sync with act
1140 la r5,VMXsync(r3) ; Point to the sync word
1169 vssync1: lwarx r7,0,r5 ; Get the sync wor
[all...]
H A Dhw_lock.s414 mr r9,r3 ; Save the sync word address
417 csynctry: lwz r11,0(r9) ; Grab the sync value
447 mr r9,r3 ; Save the sync word address
1422 sync
1937 sync
H A Dppc_disasm.i118 in 011111000ll000000000010010101100 {sync|?|ptesync|?}[$l]
H A Dlocks_ppc.c288 sync();
H A Dsavearea_asm.s993 stw r3,SVlock(0) ; Quick unlock (no need for sync or to set adjust, nothing changed)
1282 stw r3,SVlock(0) ; Quick unlock (no need for sync or to set adjust, nothing changed)
H A Dhw_vm.s701 sync ; Make sure the invalid PTE is actually in memory
718 sync ; Make sure of it all
1004 sync ; Make sure memory is consistent
1030 sync ; Make sure all is quiet
1035 sync ; Wait for quiet again
1124 sync ; Make sure the invalid PTE is actually in memory
1343 sync ; Make sure memory is consistent
2859 sync ; Make sure it is done
2867 sync ; Make sure it is done
4352 sync ; Mak
[all...]
H A DEmulate.s89 sync
/macosx-10.5.8/xnu-1228.15.4/osfmk/chud/ppc/
H A Dchud_cpu_asm.s419 sync
436 sync /* syncronization requirements */
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dkern_shutdown.c74 #include <sys/sysproto.h> /* abused for sync() */
132 * Release vnodes held by texts before sync.
142 sync(p, (void *)NULL, (int *)NULL);
146 * sync'ed up, suspend init
H A Dinit_sysent.c96 {0, 0, 0, (sy_call_t *)sync, NULL, NULL, _SYSCALL_RET_INT_T, 0}, /* 36 = sync */
/macosx-10.5.8/xnu-1228.15.4/osfmk/ipc/
H A Dmach_port.c1282 * senders, sync is less than or equal to the
1289 * dead name, sync is non-zero, and a send-once
1307 * sync is zero or notify is IP_NULL.
1317 mach_port_mscount_t sync,
1357 if (sync != 0)
1386 ipc_port_nsrequest(port, sync, notify, previousp);
1402 kr = ipc_right_dnrequest(space, name, sync != 0,
1313 mach_port_request_notification( ipc_space_t space, mach_port_name_t name, mach_msg_id_t id, mach_port_mscount_t sync, ipc_port_t notify, ipc_port_t *previousp) argument
H A Dipc_port.c383 mach_port_mscount_t sync,
395 if ((port->ip_srights == 0) && (sync <= mscount) &&
381 ipc_port_nsrequest( ipc_port_t port, mach_port_mscount_t sync, ipc_port_t notify, ipc_port_t *previousp) argument
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIONVRAM.cpp211 void IODTNVRAM::sync(void) function in class:IODTNVRAM
215 // Don't try to sync OF Variables if the system has already paniced.
219 _nvramController->sync();
572 /* The call to sync() forces the NVRAM controller to write the panic info
575 sync();
H A DIOService.cpp540 bool sync; local
545 sync = (options & kIOServiceSynchronous)
550 sync = false;
559 // if( sync) LOG("OSKernelStackRemaining = %08x @ %s\n",
567 if( sync)
581 } else if( !sync || (kIOServiceAsynchronous & options)) {
H A DIOHibernateIO.cpp1497 gIOOptionsEntry->sync();
1581 // sync now to hardware if the booter has not
1583 gIOOptionsEntry->sync();
1585 // just sync the variables in case a later panic syncs nvram (it won't sync variables)
1603 gIOOptionsEntry->sync();
H A DIOPlatformExpert.cpp1136 if (dtNVRAM) dtNVRAM->sync();
/macosx-10.5.8/xnu-1228.15.4/bsd/vfs/
H A Dvfs_bio.c1700 * Read-ahead multiple disk blocks. The first is sync, the rest async.
1709 * Read-ahead multiple disk blocks. The first is sync, the rest async.
1724 int sync, wasdelayed; local
1734 sync = !ISSET(bp->b_flags, B_ASYNC);
1741 if (!sync) {
1762 if (sync) {
3324 * Can be enabled to print out on every ``sync'' by setting "syncprt"
H A Dvfs_syscalls.c1264 sync(__unused proc_t p, __unused struct sync_args *uap, __unused register_t *retval) function
6427 * An in-kernel sync for power management to call.
6439 error = sync(current_proc(), &data, &retval[0]);
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dsysproto.h1737 int sync(struct proc *, struct sync_args *, int *);
/macosx-10.5.8/xnu-1228.15.4/tools/tests/xnu_quick_test/
H A Dtests.c1748 * Test mknod, sync system calls.
1784 /* not really sure what to do with sync call test */
1785 sync( );

Completed in 383 milliseconds

12