Searched refs:logData (Results 1 – 2 of 2) sorted by relevance
| /xnu-11215/libkern/ |
| H A D | OSKextLib.cpp | 238 char * logData = NULL;// must kmem_free in kext_request() local 309 &logData, &logDataLength); in kext_request() 320 &logData, &logDataLength); in kext_request() 343 if (logData && logDataLength > 0) { in kext_request() 347 CAST_USER_ADDR_T(logData), logDataLength, in kext_request() 371 if (logData) { in kext_request() 373 kmem_free(kernel_map, (vm_offset_t)logData, round_page(logDataLength)); in kext_request()
|
| /xnu-11215/libkern/c++/ |
| H A D | OSKext.cpp | 12002 OSSharedPtr<OSData> logData; local 12171 logData = OSData::withValue(*header); 12172 if (!logData) { 12175 …res = logData->appendBytes(&(header->sections[0]), (u_int)(header->sect_count * sizeof(header->sec… 12180 res = logData->appendBytes(os_log_data, (u_int)header->sections[OS_LOG_SECT_IDX].sect_size); 12186 res = logData->appendBytes(cstring_data, (u_int)header->sections[CSTRING_SECT_IDX].sect_size); 12192 …res = logData->appendBytes(asan_cstring_data, (u_int)header->sections[ASAN_CSTRING_SECT_IDX].sect_… 12197 result->setObject(kOSBundleLogStringsKey, logData.get()); 12235 logData = OSData::withValue(*header); 12236 if (!logData) { [all …]
|