Lines Matching refs:data

277     } data;
418 void * target, uint32_t code, uint32_t data );
1254 OSData * data;
1255 if ((data = OSDynamicCast(OSData, obj)) &&
1256 (data->getLength() == sizeof(IOPMCalendarStruct)))
1259 (const IOPMCalendarStruct *) data->getBytesNoCopy();
1333 request->data.record.type = (uint32_t) type;
1334 request->data.record.value = (uint32_t) value;
1353 (entry->data.record.type == type) &&
1356 entry->data.record.value = value;
1418 (entry->data.record.type == type) &&
1421 value = entry->data.record.value;
1490 request->data.service = service;
1555 if (record->type == request->data.record.type)
1581 else if (record->value != request->data.record.value)
1583 record->value = request->data.record.value;
1601 newRecord.type = request->data.record.type;
1602 newRecord.value = request->data.record.value;
1696 service = request->data.service;
5320 OSData * data;
5326 data = OSData::withBytesNoCopy((void *) calendar, sizeof(*calendar));
5327 if (!data)
5331 ret = setPMSetting(gIOPMSettingMaintenanceWakeCalendarKey, data);
5337 ret = setPMSetting(gIOPMSettingSleepServiceWakeCalendarKey, data);
5343 data->release();
7013 void IOPMrootDomain::tracePoint( uint8_t point, uint8_t data )
7017 PMDebug(kPMLogSleepWakeTracePoint, point, data);
7018 pmTracer->tracePoint(point, data);
8594 addr64_t data[3];
8719 data[0] = round_page(sizeof(swd_hdr) + hdr->spindump_size);
8721 data[1] = hdr->crc = crc32(0, ((char*)swd_buffer+hdr->spindump_offset), hdr->spindump_size);
8722 data[2] = kvtophys((vm_offset_t)swd_buffer);
8725 data[0], data[1], data[2]);
8727 if (PEWriteNVRAMProperty(kIOSleepWakeDebugKey, data, len) == false)
8997 /* Allocate a temp buffer to copy data between files */
9064 DMSG("sleepWakeDebugDumpFromFile: Invalid data in debug header. sign:0x%x size:0x%x spindump_offset:0x%x spindump_size:0x%x\n",
9195 addr64_t data[3];
9224 PEReadNVRAMProperty(kIOSleepWakeDebugKey, data, &len);
9232 DLOG("sleepWakeDebugRetrieve: data[0]:0x%llx data[1]:0x%llx data[2]:0x%llx\n",
9233 data[0], data[1], data[2]);
9235 bufSize = data[0];
9236 crc = data[1];
9237 paddr = data[2];