• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/xnu-2782.1.97/libkern/libkern/c++/

Lines Matching defs:OSObject

51  * This header declares the OSObject class,
57 * @class OSObject
60 * OSObject is the concrete root class
64 * OSObject defines the minimal functionality
71 * classes ultimately derived from OSObject.
75 * OSObject is derived from the abstract root class
92 * OSObject separates object allocation from initialization.
93 * You can create a new OSObject-derived instance
102 * //apple_ref/cpp/instm/OSObject/release/virtualvoid/()
111 * OSObject provides reference counting services using the
113 * //apple_ref/cpp/instm/OSObject/retain/virtualvoid/()
116 * //apple_ref/cpp/instm/OSObject/release/virtualvoid/()
119 * //apple_ref/cpp/instm/OSObject/release/virtualvoid/(int)
123 * //apple_ref/cpp/instm/OSObject/free/virtualvoid/()
128 * //apple_ref/cpp/instm/OSObject/retain/virtualvoid/()
132 * //apple_ref/cpp/instm/OSObject/release/virtualvoid/()
135 * //apple_ref/cpp/instm/OSObject/release/virtualvoid/(int)
142 * //apple_ref/cpp/instm/OSObject/free/virtualvoid/()
146 * //apple_ref/cpp/instm/OSObject/release/virtualvoid/(int)
160 * The basic features of OSObject are thread-safe.
168 class OSObject : public OSMetaClassBase
170 OSDeclareAbstractStructors(OSObject)
246 * Classes derived from OSObject must override the primary init method
264 * Classes derived from OSObject should override this function
273 * <li>OSObject's implementation performs the C++ <code>delete</code>
293 * Never use <code>delete</code> on objects derived from OSObject;
296 * //apple_ref/cpp/instm/OSObject/release/virtualvoid/()
357 * //apple_ref/cpp/instm/OSObject/free/virtualvoid/()
416 * OSObject's implementation writes a string indicating that
428 OSMetaClassDeclareReservedUnused(OSObject, 0);
429 OSMetaClassDeclareReservedUnused(OSObject, 1);
430 OSMetaClassDeclareReservedUnused(OSObject, 2);
431 OSMetaClassDeclareReservedUnused(OSObject, 3);
432 OSMetaClassDeclareReservedUnused(OSObject, 4);
433 OSMetaClassDeclareReservedUnused(OSObject, 5);
434 OSMetaClassDeclareReservedUnused(OSObject, 6);
435 OSMetaClassDeclareReservedUnused(OSObject, 7);
436 OSMetaClassDeclareReservedUnused(OSObject, 8);
437 OSMetaClassDeclareReservedUnused(OSObject, 9);
438 OSMetaClassDeclareReservedUnused(OSObject, 10);
439 OSMetaClassDeclareReservedUnused(OSObject, 11);
440 OSMetaClassDeclareReservedUnused(OSObject, 12);
441 OSMetaClassDeclareReservedUnused(OSObject, 13);
442 OSMetaClassDeclareReservedUnused(OSObject, 14);
443 OSMetaClassDeclareReservedUnused(OSObject, 15);