Searched refs:setInfo (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/AppleRAID-4.0.6/
H A Dartest.c225 CFMutableDictionaryRef setInfo = AppleRAIDGetSetProperties(setUUID); local
226 if (!setInfo) {
244 AppleRAIDMemberRef member = AppleRAIDAddMember(setInfo, partitionName, type);
254 AppleRAIDSetRef set = AppleRAIDUpdateSet(setInfo);
255 CFRelease(setInfo);
307 CFMutableDictionaryRef setInfo = AppleRAIDCreateSet(dLevel, name); local
308 if (!setInfo) exit(1);
317 AppleRAIDMemberRef member = AppleRAIDAddMember(setInfo, partitionName, CFSTR(kAppleRAIDMembersKey));
333 if (autoRebuild == AUTO_YES) AppleRAIDModifySet(setInfo, CFSTR(kAppleRAIDSetAutoRebuildKey), (void *)kCFBooleanTrue);
334 if (quickRebuild == AUTO_YES) AppleRAIDModifySet(setInfo, CFST
561 CFMutableDictionaryRef setInfo = AppleRAIDGetSetProperties(setUUID); local
609 CFMutableDictionaryRef setInfo = AppleRAIDGetSetProperties(setUUID); local
[all...]
H A DAppleRAIDUserLib.h260 @param setInfo The dictionary returned from either GetSetProperties or CreateSet.
265 AppleRAIDMemberRef AppleRAIDAddMember(CFMutableDictionaryRef setInfo, CFStringRef partitionName, CFStringRef memberType);
272 @param setInfo The dictionary returned from either GetSetProperties.
276 bool AppleRAIDRemoveMember(CFMutableDictionaryRef setInfo, AppleRAIDMemberRef memberRef);
282 @param setInfo The dictionary returned from either GetSetProperties or CreateSet.
287 bool AppleRAIDModifySet(CFMutableDictionaryRef setInfo, CFStringRef key, void * value);
294 @param setInfo The dictionary returned from either GetSetProperties or CreateSet.
297 AppleRAIDSetRef AppleRAIDUpdateSet(CFMutableDictionaryRef setInfo);
H A DAppleRAIDUserLib.c528 typedef struct setInfo { struct
541 freeSetInfo(setInfo_t *setInfo) argument
544 if (setInfo->memberProps) {
545 for (i=0; i < setInfo->memberCount; i++) {
546 if (setInfo->memberProps[i]) CFRelease(setInfo->memberProps[i]);
548 free(setInfo->memberProps);
550 if (setInfo->memberInfo) {
551 for (i=0; i < setInfo->memberCount; i++) {
552 if (setInfo
566 setInfo_t * setInfo = calloc(1, sizeof(setInfo_t)); local
[all...]
/macosx-10.10/objc4-646/runtime/
H A Dobjc-runtime-old.h94 void setInfo(uint32_t set) { function in struct:objc_class
142 setInfo(CLS_INSTANCES_HAVE_ASSOCIATED_OBJECTS);
150 if (grow) setInfo(CLS_GROW_CACHE);
159 setInfo(CLS_FINALIZE_ON_MAIN_THREAD);
169 getMeta()->setInfo(CLS_INITIALIZING);
H A Dobjc-runtime-new.h700 void setInfo(uint32_t set) {
787 setInfo(RW_INSTANCES_HAVE_ASSOCIATED_OBJECTS);
807 setInfo(RW_FINALIZE_ON_MAIN_THREAD);
816 ISA()->setInfo(RW_INITIALIZING);
H A Dobjc-class-old.mm694 cls->setInfo(CLS_HAS_INSTANCE_SPECIFIC_LAYOUT);
1171 imposter->setInfo(CLS_POSING);
1172 imposter->ISA()->setInfo(CLS_POSING);
1827 cls->setInfo(CLS_NO_PROPERTY_ARRAY);
2141 else cls->setInfo(CLS_HAS_CXX_STRUCTORS);
H A Dobjc-runtime-old.mm1219 // Nothing uses this class yet, so cls->setInfo is not needed.
2949 cls->setInfo(CLS_NO_METHOD_ARRAY);
3119 cls->setInfo(CLS_FLUSH_CACHE);
3123 cls->ISA()->setInfo(CLS_FLUSH_CACHE);
H A Dobjc-runtime-new.mm707 cls->setInfo(RW_METHOD_ARRAY);
2991 cls->setInfo(RW_LOADED);
5643 cls->setInfo(RW_HAS_INSTANCE_SPECIFIC_LAYOUT);
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DWebGLTexture.h101 void setInfo(GC3Denum internalFmt, GC3Dsizei w, GC3Dsizei h, GC3Denum tp) function in class:WebCore::WebGLTexture::LevelInfo
H A DWebGLTexture.cpp153 m_info[index][level].setInfo(internalFormat, width, height, type);
173 info.setInfo(info0.internalFormat, width, height, info0.type);

Completed in 726 milliseconds