Home
last modified time | relevance | path

Searched refs:bundlePath (Results 1 – 25 of 29) sorted by relevance

12

/external/webkit/Source/WebCore/platform/network/win/
DDownloadBundleWin.cpp51 bool appendResumeData(CFDataRef resumeData, const String& bundlePath) in appendResumeData() argument
57 if (bundlePath.isEmpty()) { in appendResumeData()
62 String nullifiedPath = bundlePath; in appendResumeData()
65 LOG_ERROR("Failed to open file %s to append resume data", bundlePath.ascii().data()); in appendResumeData()
103 CFDataRef extractResumeData(const String& bundlePath) in extractResumeData() argument
105 if (bundlePath.isEmpty()) { in extractResumeData()
111 String nullifiedPath = bundlePath; in extractResumeData()
114 LOG_ERROR("Failed to open file %s to get resume data", bundlePath.ascii().data()); in extractResumeData()
/external/webkit/Source/WebKit/win/
DWebDownloadCFNet.cpp164 /* [in] */ BSTR bundlePath, in initToResumeWithBundle() argument
167 …ownload, "Attempting resume of download bundle %s", String(bundlePath, SysStringLen(bundlePath)).a… in initToResumeWithBundle()
169 …sumeData(AdoptCF, DownloadBundle::extractResumeData(String(bundlePath, SysStringLen(bundlePath)))); in initToResumeWithBundle()
183 …optCF, MarshallingHelpers::PathStringToFileCFURLRef(String(bundlePath, SysStringLen(bundlePath)))); in initToResumeWithBundle()
193 m_bundlePath = String(bundlePath, SysStringLen(bundlePath)); in initToResumeWithBundle()
205 …thRequest complete, resumed download of bundle %s", String(bundlePath, SysStringLen(bundlePath)).a… in initToResumeWithBundle()
DWebDownload.cpp139 /* [out, retval] */ BSTR* bundlePath) in bundlePathForTargetPath() argument
152 *bundlePath = SysAllocStringLen(bundle.characters(), bundle.length()); in bundlePathForTargetPath()
153 if (!*bundlePath) in bundlePathForTargetPath()
DWebDownloadCurl.cpp80 /* [in] */ BSTR bundlePath, in initToResumeWithBundle() argument
DWebDownload.h68 /* [in] */ BSTR bundlePath,
/external/webkit/Source/WebCore/platform/network/curl/
DDownloadBundle.h36 bool appendResumeData(CFDataRef resumeData, const String& bundlePath);
37 CFDataRef extractResumeData(const String& bundlePath);
/external/webkit/Source/WebCore/platform/network/cf/
DDownloadBundle.h36 bool appendResumeData(CFDataRef resumeData, const String& bundlePath);
37 CFDataRef extractResumeData(const String& bundlePath);
/external/clang/test/SemaObjC/
Dproperty-6.m47 - (NSString *)bundlePath; method
64 frameworkBundle.bundlePath = 0;
65 [plugInPaths addObject:frameworkBundle.bundlePath];
/external/webkit/Tools/WebKitTestRunner/win/
DTestControllerWin.cpp127 CFMutableStringRef bundlePath = CFStringCreateMutableCopy(0, 0, exeContainerPath); in initializeInjectedBundlePath() local
128 CFStringAppendCString(bundlePath, injectedBundleDLL, kCFStringEncodingWindowsLatin1); in initializeInjectedBundlePath()
129 m_injectedBundlePath.adopt(WKStringCreateWithCFString(bundlePath)); in initializeInjectedBundlePath()
/external/webkit/Tools/WebKitLauncher/
DWebKitNightlyEnabler.m61 NSString *bundlePath = [[bundle bundlePath] stringByAbbreviatingWithTildeInPath];
62 NSString *bundleFileName = [bundlePath lastPathComponent];
74 if ([bundlePath length] < [path length])
77 if ([[bundlePath substringToIndex:[path length]] isEqualToString:path]) {
78 NSLog(@"Extension detected: %@", bundlePath);
151 [checkInDictionary setObject:[bundle bundlePath] forKey:@"LSBundlePath"];
Dmain.m243 …"Launching Safari at %@ failed with the error '%s' (%d)", [safariBundle bundlePath], error, errno];
/external/webkit/Tools/TestWebKitAPI/win/
DPlatformUtilitiesWin.cpp91 …RetainPtr<CFStringRef> bundlePath(AdoptCF, CFURLCopyFileSystemPath(bundleURL.get(), kCFURLWindowsP… in createInjectedBundlePath() local
92 return WKStringCreateWithCFString(bundlePath.get()); in createInjectedBundlePath()
/external/webkit/Tools/WebKitTestRunner/mac/
DTestControllerMac.mm45 …NSString *nsBundlePath = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"WebK…
51 …PluginDirectory.adopt(WKStringCreateWithCFString((CFStringRef)[[NSBundle mainBundle] bundlePath]));
/external/webkit/Source/WebKit2/Platform/mac/
DModuleMac.mm33 RetainPtr<CFStringRef> bundlePath(AdoptCF, m_path.createCFString());
34 … bundleURL(AdoptCF, CFURLCreateWithFileSystemPath(kCFAllocatorDefault, bundlePath.get(), kCFURLPOS…
/external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
DDownloadCFNet.cpp134 …RetainPtr<CFStringRef> bundlePath(AdoptCF, CFStringCreateWithCharactersNoCopy(0, reinterpret_cast<… in didDecideDestination() local
135 …RetainPtr<CFURLRef> bundlePathURL(AdoptCF, CFURLCreateWithFileSystemPath(0, bundlePath.get(), kCFU… in didDecideDestination()
/external/webkit/Tools/MiniBrowser/mac/
DAppDelegate.m136 WKStringRef bundlePath = WKStringCreateWithCFString(bundlePathCF);
138 _processContext = WKContextCreateWithInjectedBundlePath(bundlePath);
150 WKRelease(bundlePath);
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
DNetscapePluginHostManager.mm155 (NSString *)pluginPath, @"bundlePath",
279 NSString *bundlePath = pluginPath;
291 …ePath fileSystemRepresentation], "-createPluginMIMETypesPreferences", [bundlePath fileSystemRepres…
/external/webkit/Tools/TestWebKitAPI/mac/
DPlatformUtilitiesMac.mm51 …NSString *nsString = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"Injected…
/external/webkit/Source/WebKit2/WebProcess/mac/
DWebProcessMac.mm174 …AMEWORK_DIR", [[[NSBundle bundleForClass:NSClassFromString(@"WKView")] bundlePath] stringByDeletin…
215 [[NSFileManager defaultManager] changeCurrentDirectoryPath:[[NSBundle mainBundle] bundlePath]];
/external/chromium/chrome/browser/ui/cocoa/
Ddock_icon.mm44 NSString* appPath = [[NSBundle mainBundle] bundlePath];
/external/webkit/Source/WebKit/win/Interfaces/
DIWebDownload.idl96 HRESULT initToResumeWithBundle([in] BSTR bundlePath, [in] IWebDownloadDelegate* delegate);
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/mac/
DNetscapePluginModuleMac.mm313 RetainPtr<CFStringRef> bundlePath(AdoptCF, pluginPath.createCFString());
314 … bundleURL(AdoptCF, CFURLCreateWithFileSystemPath(kCFAllocatorDefault, bundlePath.get(), kCFURLPOS…
/external/chromium/chrome/browser/cocoa/
Dinstall_from_dmg.mm199 [[[NSBundle mainBundle] bundlePath] fileSystemRepresentation]);
401 NSString* source_path = [[NSBundle mainBundle] bundlePath];
/external/chromium/base/mac/
Dfoundation_util.mm80 return FilePath([[bundle bundlePath] fileSystemRepresentation]);
Dmac_util.mm92 NSURL* url = [NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]];
436 NSURL* url = [NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]];

12