Searched refs:bundle (Results 151 - 175 of 366) sorted by relevance

1234567891011>>

/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dosxcode.cpp62 secdebug("bundle", "OSXCode::main(%s) not recognized as bundle (treating as tool)", cpath);
91 if ((st.st_mode & S_IFMT) == S_IFDIR) { // directory - assume bundle
127 secdebug("bundle", "%p Bundle from path %s(%s)", this, path, executablePath().c_str());
130 Bundle::Bundle(CFBundleRef bundle, const char *root /* = NULL */) argument
131 : mBundle(bundle)
133 assert(bundle);
134 CFRetain(bundle);
136 secdebug("bundle", "%p Bundle from bundle
[all...]
H A Dcfutilities.cpp191 CFRef<CFURLRef> bundle(inUrl);
192 return cfString(bundle);
204 CFRef<CFBundleRef> bundle(inBundle);
205 return cfString(bundle);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dosxcode.cpp62 secdebug("bundle", "OSXCode::main(%s) not recognized as bundle (treating as tool)", cpath);
91 if ((st.st_mode & S_IFMT) == S_IFDIR) { // directory - assume bundle
127 secdebug("bundle", "%p Bundle from path %s(%s)", this, path, executablePath().c_str());
130 Bundle::Bundle(CFBundleRef bundle, const char *root /* = NULL */) argument
131 : mBundle(bundle)
133 assert(bundle);
134 CFRetain(bundle);
136 secdebug("bundle", "%p Bundle from bundle
[all...]
H A Dcfutilities.cpp191 CFRef<CFURLRef> bundle(inUrl);
192 return cfString(bundle);
204 CFRef<CFBundleRef> bundle(inBundle);
205 return cfString(bundle);
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Dia64-dis.c77 bfd_byte bundle[16]; local
93 status = (*info->read_memory_func) (memaddr, bundle, sizeof (bundle), info);
100 t0 = bfd_getl64 (bundle);
101 t1 = bfd_getl64 (bundle + 8);
/macosx-10.10.1/IOGraphics-485/tools/
H A Dmodelist.c28 CFBundleRef bundle; member in struct:IOFBModeList
215 palNTSCStr = CFBundleCopyLocalizedString(modeListRef->bundle, palNTSCStr, palNTSCStr, 0);
220 stretchedStr = CFBundleCopyLocalizedString(modeListRef->bundle, CFSTR(kStretchedString), CFSTR(kStretchedString), 0);
221 simulscanStr = CFBundleCopyLocalizedString(modeListRef->bundle, CFSTR(kSimulscanString), CFSTR(kSimulscanString), 0);
222 interlacedStr = CFBundleCopyLocalizedString(modeListRef->bundle, CFSTR(kInterlacedString), CFSTR(kInterlacedString), 0);
223 externalStr = CFBundleCopyLocalizedString(modeListRef->bundle, CFSTR(kExternalString), CFSTR(kExternalString), 0);
231 refStr = CFBundleCopyLocalizedString(modeListRef->bundle, refStr, refStr, 0);
240 formatStr = CFBundleCopyLocalizedString(modeListRef->bundle, formatStr, formatStr, 0);
301 formatStr = CFBundleCopyLocalizedString(modeListRef->bundle, formatStr, formatStr, 0);
325 formatStr2 = CFBundleCopyLocalizedString(modeListRef->bundle, formatStr
[all...]
/macosx-10.10.1/awk-20/src/
H A Dmakefile70 bundle:
73 @bundle $(SHIP)
78 @bundle $(SHIP) >awk.shar
/macosx-10.10.1/Security-57031.1.35/codesign_wrapper/
H A Dcodesign.c161 CFBundleRef bundle = NULL; local
167 bundle = CFBundleCreate(kCFAllocatorDefault, path_url);
168 require(bundle, out);
169 CFURLRef exec = CFBundleCopyExecutableURL(bundle);
175 if (bundle) CFRelease(bundle);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/gtk/
H A DWebKitWebExtension.cpp116 WebKitWebExtension* webkitWebExtensionCreate(InjectedBundle* bundle) argument
131 WKBundleSetClient(toAPI(bundle), &wkBundleClient.base);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/gtk/
H A DWebGtkExtensionManager.cpp93 void WebGtkExtensionManager::initialize(WKBundleRef bundle, WKTypeRef userDataString) argument
95 m_extension = adoptGRef(webkitWebExtensionCreate(toImpl(bundle)));
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Lib/PyObjCTools/
H A DNibClassBuilder.py22 extractClasses(nibName, bundle=<main-bundle>)
23 This finds the nib by name from a bundle. If no bundle
24 if given, the main bundle is searched.
29 extractClasses() can be called multiple times for the same bundle: the
138 def extractClasses(self, nibName=None, bundle=None, path=None):
142 searched in the main bundle (or in the bundle specified), or
146 self._extractClassesFromNibFromBundle(nibName, bundle)
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Lib/PyObjCTools/
H A DNibClassBuilder.py22 extractClasses(nibName, bundle=<main-bundle>)
23 This finds the nib by name from a bundle. If no bundle
24 if given, the main bundle is searched.
29 extractClasses() can be called multiple times for the same bundle: the
138 def extractClasses(self, nibName=None, bundle=None, path=None):
142 searched in the main bundle (or in the bundle specified), or
146 self._extractClassesFromNibFromBundle(nibName, bundle)
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Lib/PyObjCTools/
H A DNibClassBuilder.py22 extractClasses(nibName, bundle=<main-bundle>)
23 This finds the nib by name from a bundle. If no bundle
24 if given, the main bundle is searched.
29 extractClasses() can be called multiple times for the same bundle: the
138 def extractClasses(self, nibName=None, bundle=None, path=None):
142 searched in the main bundle (or in the bundle specified), or
146 self._extractClassesFromNibFromBundle(nibName, bundle)
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/tools/genrb/
H A Dparse.cpp104 struct SRBRoot *bundle; member in struct:__anon1243
433 result = string_open(state->bundle, tag, pTarget, (int32_t)(target - pTarget), NULL, status);
511 result = string_open(state->bundle, tag, pTarget, size, NULL, status);
567 dependencyArray = array_open(state->bundle, "%%DEPENDENCY", NULL, status);
570 result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
572 elem = string_open(state->bundle, NULL, tokenValue->fChars, tokenValue->fLength, comment, status);
603 result = string_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
635 result = alias_open(state->bundle, tag, tokenValue->fChars, tokenValue->fLength, comment, status);
1061 struct SResource *collationBin = bin_open(state->bundle, "%%CollationBin", totalSize, dest, NULL, NULL, status);
1088 result = table_open(state->bundle, ta
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dnptrans.h41 UResourceBundle *bundle; member in class:NamePrepTransform
/macosx-10.10.1/Security-57031.1.35/Security/authd/
H A Dagent.h63 bundle = 'BNDL', enumerator in enum:__anon3536
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlsym-RTLD_NEXT-missing/
H A DMakefile60 ${RM} ${RMFLAGS} *~ main test.bundle foo1.dylib foo2.dylib foo3.dylib
/macosx-10.10.1/iodbc-42.5/iodbc/iodbcinst/
H A DSQLConfigDataSource.c243 CFBundleRef bundle; local
424 bundle = CFBundleGetBundleWithIdentifier (CFSTR ("org.iodbc.inst"));
425 if (bundle)
429 CFBundleCopyResourceURL (bundle, CFSTR ("iODBCdrvproxy.bundle"),
H A DSQLConfigDriver.c181 CFBundleRef bundle; local
344 bundle = CFBundleGetBundleWithIdentifier (CFSTR ("org.iodbc.inst"));
345 if (bundle)
349 CFBundleCopyResourceURL (bundle, CFSTR ("iODBCdrvproxy.bundle"),
H A DSQLGetTranslator.c144 CFBundleRef bundle; local
153 bundle = CFBundleGetBundleWithIdentifier (CFSTR ("org.iodbc.inst"));
154 if (bundle)
158 CFBundleCopyResourceURL (bundle, CFSTR ("iODBCadm.bundle"),
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Doc/07tutorial_embed/src/
H A DITunesCommunication_2.py25 NibClassBuilder.extractClasses("CDInfoDocument", bundle=NSBundle.mainBundle())
/macosx-10.10.1/ruby-106/ruby/test/mkmf/
H A Dtest_framework.rb16 cmd.gsub!(/ -bundle /, ' -dynamiclib ')
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dulocdata.c39 * Pointer to the resource bundle associated with this locale data object
41 UResourceBundle *bundle; member in struct:ULocaleData
44 * Pointer to the lang resource bundle associated with this locale data object
67 uld->bundle = ures_open(NULL, localeID, status);
83 ures_close(uld->bundle);
115 exemplarChars = ures_getStringByKey(uld->bundle, exemplarSetTypes[extype], &len, &localStatus);
157 delimiterBundle = ures_getByKey(uld->bundle, "delimiters", NULL, &localStatus);
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dprint-juniper.c420 u_int8_t bundle; member in struct:juniper_l2info_t
765 printf("Bundle-ID %u: ",l2info.bundle);
853 if (eflag && EXTRACT_32BITS(l2info.cookie) != 1) printf("Bundle-ID %u, ",l2info.bundle);
885 if (eflag && EXTRACT_32BITS(l2info.cookie) != 1) printf("Bundle-ID %u, ",l2info.bundle);
1286 l2info->bundle = l2info->cookie[0];
1334 l2info->bundle = l2info->cookie[1];
1337 l2info->bundle = (EXTRACT_16BITS(&l2info->cookie[6])>>3)&0xfff;
1341 l2info->bundle = l2info->cookie[0];
1350 l2info->bundle = l2info->cookie[1];
1357 l2info->bundle
[all...]
/macosx-10.10.1/ppp-786.1.1/Dialogs/
H A DDialogs.c110 static CFBundleRef bundle = 0; /* our bundle ref */ variable
148 bundle = ref;
149 bundleURL = CFBundleCopyBundleURL(bundle);
153 CFRetain(bundle);
281 url = CFBundleCopyResourceURL(bundle, CFSTR(ICON), NULL, NULL);
633 url = CFBundleCopyResourceURL(bundle, CFSTR(ICON), NULL, NULL);

Completed in 394 milliseconds

1234567891011>>