Home
last modified time | relevance | path

Searched refs:OSBoolean (Results 1 – 23 of 23) sorted by relevance

/xnu-11215/libkern/c++/
H A DOSBoolean.cpp37 OSDefineMetaClassAndStructorsWithInit(OSBoolean, OSObject, OSBoolean::initialize())
54 OSBoolean::initialize() in initialize()
56 gOSBooleanTrue = new OSBoolean; in initialize()
66 gOSBooleanFalse = new OSBoolean; in initialize()
78 OSBoolean::free() in free()
98 OSBoolean *
105 OSBoolean::isTrue() const in isTrue()
110 OSBoolean::isFalse() const in isFalse()
115 OSBoolean::getValue() const in getValue()
121 OSBoolean::isEqualTo(const OSBoolean *boolean) const in isEqualTo()
[all …]
H A DOSUnserialize.y632 OSBoolean *b = OSBoolean::withBoolean((bool)o); in buildOSBoolean()
H A DOSSerializeBinary.cpp218 OSBoolean * boo; in binarySerializeInternal()
303 } else if ((boo = OSDynamicCast(OSBoolean, o))) { in binarySerializeInternal()
H A DOSKext.cpp2080 scratchBool = OSDynamicCast(OSBoolean, in initWithPrelinkedInfoDict()
2409 scratchBool = OSDynamicCast(OSBoolean, in initWithCodelessInfo()
3005 scratchBool = OSDynamicCast(OSBoolean, in setInfoDictionaryAndPath()
3117 scratchBool = OSDynamicCast(OSBoolean, in setInfoDictionaryAndPath()
3123 scratchBool = OSDynamicCast(OSBoolean, in setInfoDictionaryAndPath()
5998 OSBoolean *loadableVal; in isLoadable()
9181 OSBoolean * stale = OSDynamicCast(OSBoolean,
10544 OSBoolean * terminateFlag = OSDynamicCast(OSBoolean,
12395OSBoolean *allowUserLoad = OSDynamicCast(OSBoolean, getPropertyForHostArch(kOSBundleAllowUserLoadK…
12883 OSBoolean *reslide,
[all …]
H A DOSUnserialize.cpp2282 OSBoolean *b = OSBoolean::withBoolean((bool)o); in buildOSBoolean()
/xnu-11215/libkern/libkern/c++/
H A DOSBoolean.h37 class OSBoolean; variable
39 typedef OSBoolean* OSBooleanPtr;
67 class OSBoolean : public OSObject
69 OSDeclareDefaultStructors(OSBoolean);
234 OSMetaClassDeclareReservedUnused(OSBoolean, 0);
235 OSMetaClassDeclareReservedUnused(OSBoolean, 1);
236 OSMetaClassDeclareReservedUnused(OSBoolean, 2);
237 OSMetaClassDeclareReservedUnused(OSBoolean, 3);
238 OSMetaClassDeclareReservedUnused(OSBoolean, 4);
258 extern OSBoolean * const & kOSBooleanTrue;
[all …]
H A DMakefile12 OSBoolean.h \
H A DOSSerialize.h95 friend class OSBoolean; variable
H A DOSKext.h847 OSBoolean * reslide,
/xnu-11215/iokit/Kernel/
H A DprintPlist63 } else if (typeID == OSTypeID(OSBoolean)) {
65 OSBoolean * boolObj = OSDynamicCast(OSBoolean, plist);
H A DIOPMrootDomain.cpp1834 OSBoolean *b = NULL; in setProperties()
1918 if (OSDynamicCast(OSBoolean, obj)) { in setProperties()
1934 if ((b = OSDynamicCast(OSBoolean, obj))) { in setProperties()
1957 if ((b = OSDynamicCast(OSBoolean, obj))) { in setProperties()
1986 if ((b = OSDynamicCast(OSBoolean, obj))) { in setProperties()
5641 } else if (OSDynamicCast(OSBoolean, obj.get())) {
7104 OSBoolean **waitForReply = (typeof(waitForReply))arg3;
8124 if (kOSBooleanTrue == (OSBoolean *) arg0) {
10746 return OSSharedPtr<OSBoolean>(kOSBooleanTrue, OSNoRetain);
10755 return OSSharedPtr<OSBoolean>(kOSBooleanTrue, OSNoRetain);
[all …]
H A DIOPlatformExpert.cpp1216 OSBoolean *data; in PEReadNVRAMBooleanProperty()
1232 data = OSDynamicCast(OSBoolean, obj); in PEReadNVRAMBooleanProperty()
1249 OSBoolean *data = NULL; in PEWriteNVRAMBooleanProperty()
H A DIONVRAMCHRPHandler.cpp1112 OSBoolean *tmpBoolean = nullptr; in convertObjectToProp()
1126 tmpBoolean = OSDynamicCast(OSBoolean, propObject); in convertObjectToProp()
H A DIONVRAMV3Handler.cpp1391 OSBoolean *tmpBoolean = nullptr; in convertObjectToProp()
1402 tmpBoolean = OSDynamicCast(OSBoolean, propObject); in convertObjectToProp()
H A DIONVRAM.cpp1858 propObject = OSDynamicPtrCast<OSBoolean>(sharedObject); in setPropertyWithGUIDAndName()
1860 …NFO, SYSTEM_EVENT_SUBSYSTEM_NVRAM, "write", "%s as bool to %d", name, ((OSBoolean *)propObject.get… in setPropertyWithGUIDAndName()
H A DIORegistryEntry.cpp902 OSBoolean * aBooleanObj = OSBoolean::withBoolean( aBoolean ); in setProperty()
H A DIOUserClient.cpp3646 OSBoolean * boo; in is_io_registry_entry_get_property_bytes()
3677 } else if ((boo = OSDynamicCast( OSBoolean, obj ))) { in is_io_registry_entry_get_property_bytes()
H A DIOService.cpp186 static OSBoolean * gIOConsoleBooterLockState;
/xnu-11215/libsa/
H A Dbootstrap.cpp614 OSBoolean * isKernelExternalComponent = NULL;// don't release in loadKernelExternalComponents()
650 isKernelExternalComponent = OSDynamicCast(OSBoolean, in loadKernelExternalComponents()
/xnu-11215/libkern/coreanalytics/
H A Dcoreanalytics_shim.cpp101 field = OSBoolean::withBoolean(bool_value); in serialize_event_field()
/xnu-11215/libkern/conf/
H A Dfiles23 libkern/c++/OSBoolean.cpp optional libkerncpp
/xnu-11215/iokit/DriverKit/
H A DOSObject.iig248 class IIG_SERIALIZABLE OSBoolean;
/xnu-11215/iokit/Tests/
H A DTests.cpp1784 void (^sendClam)(OSBoolean * state) = ^void (OSBoolean * state) { in IOServiceStateNotificationTests()