Searched refs:obj (Results 26 - 50 of 57) sorted by relevance

123

/darwin-on-arm/xnu/libkern/c++/
H A DOSNumber.cpp135 bool OSNumber::isEqualTo(const OSMetaClassBase *obj) const
138 if ((offset = OSDynamicCast(OSNumber, obj)))
H A DOSDictionary.cpp61 #define EXT_CAST(obj) \
62 reinterpret_cast<OSObject *>(const_cast<OSMetaClassBase *>(obj))
410 const OSMetaClassBase * obj; local
412 obj = srcDict->getObject(sym);
413 if ( !setObject(sym, obj) ) {
532 const OSMetaClassBase * obj; local
541 obj = srcDict->getObject(dictionary[i].key);
542 if ( !obj )
545 if ( !dictionary[i].value->isEqualTo(obj) )
666 const OSMetaClassBase *obj local
[all...]
H A DOSObject.cpp90 static const char *getClassName(const OSObject *obj) argument
92 const OSMetaClass *meta = obj->getMetaClass();
H A DOSSymbol.cpp592 bool OSSymbol::isEqualTo(const OSMetaClassBase *obj) const
597 if ((sym = OSDynamicCast(OSSymbol, obj)))
599 else if ((str = OSDynamicCast(OSString, obj)))
H A DOSArray.cpp58 #define EXT_CAST(obj) \
59 reinterpret_cast<OSObject *>(const_cast<OSMetaClassBase *>(obj))
H A DOSMetaClass.cpp834 OSObject * obj; local
852 while (!done && (obj = set->getObject(idx++)))
854 if ((childSet = OSDynamicCast(OSOrderedSet, obj)))
864 done = (*applier)(obj, context);
866 if (!obj)
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_kern.c1048 vm_object_t obj; local
1078 obj = entry->object.vm_object;
1080 while(obj->shadow) {
1081 obj_off += obj->vo_shadow_offset;
1082 obj = obj->shadow;
1084 if((obj->pager_created) && (obj->pager == pager)) {
1085 if(((obj->paging_offset) + obj_off) == file_off) {
1098 if (file_off_aligned == (obj
[all...]
H A Dvm_map.c2985 panic("vm_allocate_cpm: obj %p off 0x%llx no page",
3002 printf("obj %p off 0x%llx\n", cpm_obj, (uint64_t)offset);
7851 XPR(XPR_VM_MAP, "vm_map_copyin_common src_obj 0x%x ent 0x%x obj 0x%x was_wired %d\n",
9798 #define OBJ_RESIDENT_COUNT(obj, entry_size) \
9800 ((obj)->all_reusable ? \
9801 (obj)->wired_page_count : \
9802 (obj)->resident_page_count - (obj)->reusable_page_count))
9818 struct vm_object *obj, *tmp_obj; local
9824 obj
9897 register struct vm_object *obj, *tmp_obj; local
[all...]
/darwin-on-arm/xnu/osfmk/ipc/
H A Dipc_object.h220 extern struct label *io_getlabel (ipc_object_t obj);
221 #define io_unlocklabel(obj)
H A Dmach_port.c1796 ipc_object_t obj; local
1810 name, MACH_PORT_RIGHT_RECEIVE, &obj,
1815 /* obj and psobj are locked (and were locked in that order) */
1817 assert(obj != IO_NULL);
1819 kr = ipc_pset_add((ipc_pset_t)psobj, (ipc_port_t)obj, wql);
1821 io_unlock(obj);
1855 ipc_object_t obj; local
1866 name, MACH_PORT_RIGHT_RECEIVE, &obj,
1871 /* obj and psobj are both locked (and were locked in that order) */
1873 assert(obj !
[all...]
/darwin-on-arm/xnu/security/
H A Dmac_port.c275 mac_port_check_method(task_t task, struct label *sub, struct label *obj, int msgid) argument
279 MAC_CHECK(port_check_method, get_bsdtask_info(task), sub, obj, msgid);
/darwin-on-arm/xnu/iokit/Kernel/
H A DIORegistryEntry.cpp409 OSObject * obj; \
412 obj = getProperty( aKey ); \
413 if( obj) \
414 obj->retain(); \
417 return( obj ); \
426 OSObject * obj = getProperty( aKey ); \
428 if ( (0 == obj) && plane && (options & kIORegistryIterateRecursively) ) { \
434 while ( (0 == obj) && (entry = iter->getNextObject()) ) { \
435 obj = entry->getProperty( aKey ); \
441 return( obj ); \
514 OSObject * obj; local
590 OSObject * obj = getProperty( tmpKey ); local
600 OSObject * obj = getProperty( tmpKey ); local
[all...]
H A DIOPMPowerSource.cpp133 OSObject *obj; local
146 obj = properties->getObject(key);
147 if(!obj) continue;
148 setProperty(key, obj);
H A DIOPMrootDomain.cpp1184 OSObject *obj; local
1223 (obj = dict->getObject(key)))
1227 if (OSDynamicCast(OSBoolean, obj))
1232 if ((n = OSDynamicCast(OSNumber, obj)))
1244 if ((b = OSDynamicCast(OSBoolean, obj)))
1249 setProperty(key, obj);
1253 if ((d = OSDynamicCast(OSDictionary, obj)) &&
1270 if ((n = OSDynamicCast(OSNumber, obj)))
1275 OSString * str = OSDynamicCast(OSString, obj);
1281 if ((b = OSDynamicCast(OSBoolean, obj)))
2798 handleQueueSleepWakeUUID(OSObject *obj) argument
3424 OSObject *obj = NULL; local
4050 OSObject * obj = 0; local
[all...]
H A DIOHibernateIO.cpp747 OSObject * obj; local
749 obj = next->getProperty(kIOPolledInterfaceSupportKey);
750 if (kOSBooleanFalse == obj)
755 else if ((poller = OSDynamicCast(IOPolledInterface, obj)))
1125 OSObject * obj; local
1149 if ((obj = IOService::getPMRootDomain()->copyProperty(kIOHibernateFileKey)))
1151 if ((str = OSDynamicCast(OSString, obj)))
1154 obj->release();
1193 if ((obj = IOService::getPMRootDomain()->copyProperty(kIOHibernateFileMinSizeKey)))
1195 if ((num = OSDynamicCast(OSNumber, obj))) var
1671 OSObject * obj = 0; local
[all...]
H A DIOStatistics.cpp1088 OSObject *obj; local
1091 obj = userClient->copyProperty("IOUserClientCreator",
1095 if (!obj)
1098 ossUserClientCreator = OSDynamicCast(OSString, obj);
1189 if (obj)
1190 obj->release();
H A DIOCatalogue.cpp153 OSObject * obj; local
162 for (unsigned int idx = 0; (obj = initArray->getObject(idx)); idx++)
164 dict = OSDynamicCast(OSDictionary, obj);
H A DIOPlatformExpert.cpp843 OSObject *obj; local
856 obj = gIOOptionsEntry->getProperty(symbol);
857 if (!obj)
861 data = OSDynamicCast(OSData, obj);
H A DIODeviceTreeSupport.cpp840 OSObject *obj; local
843 obj = OSUnserialize( keys, 0 );
845 if( obj) {
846 result = regEntry->compareNames( obj );
847 obj->release();
H A DIOService.cpp3569 OSObject * obj; local
3580 if((obj = matching->getObject(gIOProviderClassKey))
3582 && gIOResourcesKey->isEqualTo(obj)
3608 if ((str = OSDynamicCast(OSString, obj)))
4608 OSObject * obj; local
4632 obj = table->getObject( gIONameMatchKey );
4633 if( obj) {
4635 match = compareNames( obj, changesOK ? &matched : 0 );
4659 obj = table->getObject( gIOPropertyMatchKey );
4660 if( obj)
[all...]
/darwin-on-arm/xnu/
H A DMakefile8 export OBJROOT=$(SRCROOT)/BUILD/obj/
/darwin-on-arm/xnu/tools/
H A Dremote_build.sh10 # which caches tools an SDKs into ./BUILD/obj/BuildTools. When the combined
13 # cached tools in ./BUILD/obj/BuildTools instead of whatever Xcode tools are on
130 REMOTE_BUILDTOOLSREL="./BUILD/obj"
132 REMOTE_BUILDSCRIPTREL="./BUILD/obj"
158 mkdir -p ./BUILD/obj
167 tar jcf ./BUILD/obj.tar.bz2 --exclude=\*.o --exclude=\*.cpo --exclude=\*.d --exclude=\*.cpd --exclude=\*.non_lto --exclude=\*.ctf --exclude=conf -C ./BUILD/obj . || exit 1
201 ssh $REMOTEBUILD "mkdir -p \"${REMOTEBUILDPATH}/BUILD/obj\"" || die "Could not make remote build directory"
207 rsync -azv --delete $RSYNC_ARGS --include=/build.sh --include=/BuildTools --include=/BuildTools/\*\* --exclude=\* "${OBJROOT}/" $REMOTEBUILD:"${REMOTEBUILDPATH}/BUILD/obj/" || die "Could not rsync build tree"
215 rsync -azv --no-o --no-g --exclude=\*.o --exclude=\*.cpo --exclude=\*.d --exclude=\*.cpd --exclude=\*.non_lto --exclude=\*.ctf --exclude=conf $REMOTEBUILD:"${REMOTEBUILDPATH}/BUILD/obj/" "
[all...]
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOUserClient.h241 static void destroyUserReferences( OSObject * obj );
335 @param obj The object we want to export to the client.
339 OSObject *obj, io_object_t *clientObj);
/darwin-on-arm/xnu/bsd/conf/
H A DMakefile.template332 $(_v)( for obj in ${LDOBJS}; do \
333 echo $(TARGET)$(COMP_OBJ_DIR)/$(KERNEL_CONFIG)/$${obj}; \
/darwin-on-arm/xnu/libkern/kxld/
H A DMakefile15 OBJROOT=./BUILD/obj

Completed in 199 milliseconds

123