Home
last modified time | relevance | path

Searched refs:gIOPolledCoreFileVars (Results 1 – 4 of 4) sorted by relevance

/xnu-10002.61.3/osfmk/kdp/output_stages/
H A Dout_disk.c67 err = IOPolledFileSeek(gIOPolledCoreFileVars, aligned_offset); in disk_stage_write()
74 gIOPolledCoreFileVars->position += offset_misalignment; in disk_stage_write()
80 uint64_t chunk = gIOPolledCoreFileVars->bufferLimit - gIOPolledCoreFileVars->bufferOffset; in disk_stage_write()
100 err = IOPolledFileSeek(gIOPolledCoreFileVars, aligned_offset); in disk_stage_write()
107 gIOPolledCoreFileVars->position += offset_misalignment; in disk_stage_write()
117 err = IOPolledFileWrite(gIOPolledCoreFileVars, data, (IOByteCount) chunk, NULL); in disk_stage_write()
126 uint32_t remainder = gIOPolledCoreFileVars->bufferLimit - gIOPolledCoreFileVars->bufferOffset; in disk_stage_write()
127 gIOPolledCoreFileVars->bufferOffset += remainder; in disk_stage_write()
128 gIOPolledCoreFileVars->position += remainder; in disk_stage_write()
129 err = IOPolledFileWrite(gIOPolledCoreFileVars, 0, 0, NULL); in disk_stage_write()
[all …]
/xnu-10002.61.3/iokit/bsddev/
H A DIOKitBSDInit.cpp1123 IOPolledFileIOVars * gIOPolledCoreFileVars; variable
1254 if (gIOPolledCoreFileVars) { in IOOpenPolledCoreFile()
1283 NULL, 0, &gIOPolledCoreFileVars, NULL, NULL, NULL); in IOOpenPolledCoreFile()
1301 NULL, 0, &gIOPolledCoreFileVars, NULL, NULL, NULL); in IOOpenPolledCoreFile()
1310 …gIOPolledCoreFileOpenRet = IOPolledFilePollersSetup(gIOPolledCoreFileVars, kIOPolledPreflightCoreD… in IOOpenPolledCoreFile()
1312 IOPolledFileClose(&gIOPolledCoreFileVars, 0, NULL, 0, 0, 0, false); in IOOpenPolledCoreFile()
1366 IOPolledFilePollersClose(gIOPolledCoreFileVars, kIOPolledPostflightCoreDumpState); in IOClosePolledCoreFile()
1367 IOPolledFileClose(&gIOPolledCoreFileVars, 0, NULL, 0, 0, 0, false); in IOClosePolledCoreFile()
1378 IOPolledFilePollersClose(gIOPolledCoreFileVars, kIOPolledPostflightCoreDumpState); in IOUnlinkPolledCoreFile()
1379 IOPolledFileClose(&gIOPolledCoreFileVars, 0, NULL, 0, 0, 0, true); in IOUnlinkPolledCoreFile()
[all …]
/xnu-10002.61.3/iokit/IOKit/
H A DIOBSD.h92 extern struct IOPolledFileIOVars * gIOPolledCoreFileVars;
/xnu-10002.61.3/osfmk/kdp/
H A Dkdp_core.c172 return NULL != gIOPolledCoreFileVars; in kdp_has_polled_corefile()