Home
last modified time | relevance | path

Searched refs:inPath (Results 1 – 25 of 28) sorted by relevance

12

/AOO41X/main/ucb/source/ucp/webdav/
H A DSerfRequestProcessorImplFac.cxx43 SerfRequestProcessorImpl* createPropFindReqProcImpl( const char* inPath, in createPropFindReqProcImpl() argument
49 SerfRequestProcessorImpl* pReqProcImpl = new SerfPropFindReqProcImpl( inPath, in createPropFindReqProcImpl()
57 SerfRequestProcessorImpl* createPropFindReqProcImpl( const char* inPath, in createPropFindReqProcImpl() argument
62 SerfRequestProcessorImpl* pReqProcImpl = new SerfPropFindReqProcImpl( inPath, in createPropFindReqProcImpl()
69 SerfRequestProcessorImpl* createPropPatchReqProcImpl( const char* inPath, in createPropPatchReqProcImpl() argument
74 SerfRequestProcessorImpl* pReqProcImpl = new SerfPropPatchReqProcImpl( inPath, in createPropPatchReqProcImpl()
81 SerfRequestProcessorImpl* createGetReqProcImpl( const char* inPath, in createGetReqProcImpl() argument
85 SerfRequestProcessorImpl* pReqProcImpl = new SerfGetReqProcImpl( inPath, in createGetReqProcImpl()
91 SerfRequestProcessorImpl* createGetReqProcImpl( const char* inPath, in createGetReqProcImpl() argument
97 SerfRequestProcessorImpl* pReqProcImpl = new SerfGetReqProcImpl( inPath, in createGetReqProcImpl()
[all …]
H A DSerfSession.cxx233 rtl::OUString SerfSession::composeCurrentUri(const rtl::OUString & inPath) in composeCurrentUri() argument
274 aBuf.append( inPath ); in composeCurrentUri()
668 SerfRequestProcessor* SerfSession::createReqProc( const rtl::OUString & inPath ) in createReqProc() argument
671 inPath, in createReqProc()
678 void SerfSession::PROPFIND( const rtl::OUString & inPath, in PROPFIND() argument
690 boost::shared_ptr<SerfRequestProcessor> aReqProc( createReqProc( inPath ) ); in PROPFIND()
701 throw DAVException( DAVException::DAV_HTTP_ERROR, inPath, (sal_uInt16)APR_EGENERAL ); in PROPFIND()
709 void SerfSession::PROPFIND( const rtl::OUString & inPath, in PROPFIND() argument
720 boost::shared_ptr<SerfRequestProcessor> aReqProc( createReqProc( inPath ) ); in PROPFIND()
730 throw DAVException( DAVException::DAV_HTTP_ERROR, inPath, (sal_uInt16)APR_EGENERAL ); in PROPFIND()
[all …]
H A DDAVSession.hxx64 virtual sal_Bool CanUse( const ::rtl::OUString & inPath ) = 0;
80 virtual void PROPFIND( const ::rtl::OUString & inPath,
88 virtual void PROPFIND( const ::rtl::OUString & inPath,
94 virtual void PROPPATCH( const ::rtl::OUString & inPath,
99 virtual void HEAD( const ::rtl::OUString & inPath,
106 GET( const ::rtl::OUString & inPath,
110 virtual void GET( const ::rtl::OUString & inPath,
117 GET( const ::rtl::OUString & inPath,
124 GET( const ::rtl::OUString & inPath,
131 virtual void PUT( const ::rtl::OUString & inPath,
[all …]
H A DSerfRequestProcessorImplFac.hxx37 SerfRequestProcessorImpl* createPropFindReqProcImpl( const char* inPath,
43 SerfRequestProcessorImpl* createPropFindReqProcImpl( const char* inPath,
48 SerfRequestProcessorImpl* createPropPatchReqProcImpl( const char* inPath,
53 SerfRequestProcessorImpl* createGetReqProcImpl( const char* inPath,
57 SerfRequestProcessorImpl* createGetReqProcImpl( const char* inPath,
63 SerfRequestProcessorImpl* createGetReqProcImpl( const char* inPath,
67 SerfRequestProcessorImpl* createGetReqProcImpl( const char* inPath,
73 SerfRequestProcessorImpl* createHeadReqProcImpl( const char* inPath,
78 SerfRequestProcessorImpl* createPutReqProcImpl( const char* inPath,
84 SerfRequestProcessorImpl* createPostReqProcImpl( const char* inPath,
[all …]
H A DSerfSession.hxx78 SerfRequestProcessor* createReqProc( const rtl::OUString & inPath );
80 rtl::OUString composeCurrentUri( const rtl::OUString & inPath );
131 PROPFIND( const ::rtl::OUString & inPath,
140 PROPFIND( const ::rtl::OUString & inPath,
147 PROPPATCH( const ::rtl::OUString & inPath,
153 HEAD( const ::rtl::OUString & inPath,
162 GET( const ::rtl::OUString & inPath,
167 GET( const ::rtl::OUString & inPath,
174 GET( const ::rtl::OUString & inPath,
181 GET( const ::rtl::OUString & inPath,
[all …]
H A DSerfGetReqProcImpl.cxx32 SerfGetReqProcImpl::SerfGetReqProcImpl( const char* inPath, in SerfGetReqProcImpl() argument
35 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfGetReqProcImpl()
43 SerfGetReqProcImpl::SerfGetReqProcImpl( const char* inPath, in SerfGetReqProcImpl() argument
48 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfGetReqProcImpl()
56 SerfGetReqProcImpl::SerfGetReqProcImpl( const char* inPath, in SerfGetReqProcImpl() argument
59 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfGetReqProcImpl()
67 SerfGetReqProcImpl::SerfGetReqProcImpl( const char* inPath, in SerfGetReqProcImpl() argument
72 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfGetReqProcImpl()
H A DSerfGetReqProcImpl.hxx40 SerfGetReqProcImpl( const char* inPath,
44 SerfGetReqProcImpl( const char* inPath,
50 SerfGetReqProcImpl( const char* inPath,
54 SerfGetReqProcImpl( const char* inPath,
H A DSerfPostReqProcImpl.cxx34 SerfPostReqProcImpl::SerfPostReqProcImpl( const char* inPath, in SerfPostReqProcImpl() argument
42 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfPostReqProcImpl()
53 SerfPostReqProcImpl::SerfPostReqProcImpl( const char* inPath, in SerfPostReqProcImpl() argument
61 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfPostReqProcImpl()
H A DSerfPropFindReqProcImpl.cxx39 SerfPropFindReqProcImpl::SerfPropFindReqProcImpl( const char* inPath, in SerfPropFindReqProcImpl() argument
44 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfPropFindReqProcImpl()
55 SerfPropFindReqProcImpl::SerfPropFindReqProcImpl( const char* inPath, in SerfPropFindReqProcImpl() argument
59 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfPropFindReqProcImpl()
H A DSerfMkColReqProcImpl.cxx32 SerfMkColReqProcImpl::SerfMkColReqProcImpl( const char* inPath, in SerfMkColReqProcImpl() argument
35 : SerfRequestProcessorImpl( inPath,inRequestHeaders ) in SerfMkColReqProcImpl()
H A DSerfDeleteReqProcImpl.cxx32 SerfDeleteReqProcImpl::SerfDeleteReqProcImpl( const char* inPath, in SerfDeleteReqProcImpl() argument
35 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfDeleteReqProcImpl()
H A DSerfTypes.hxx48 SerfLock(const ucb::Lock inLock, rtl::OUString inUri, rtl::OUString inPath) in SerfLock() argument
51 , mPathStr( inPath ) in SerfLock()
H A DSerfPutReqProcImpl.cxx34 SerfPutReqProcImpl::SerfPutReqProcImpl( const char* inPath, in SerfPutReqProcImpl() argument
39 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfPutReqProcImpl()
H A DSerfPropFindReqProcImpl.hxx40 SerfPropFindReqProcImpl( const char* inPath,
46 SerfPropFindReqProcImpl( const char* inPath,
H A DSerfPostReqProcImpl.hxx36 SerfPostReqProcImpl( const char* inPath,
45 SerfPostReqProcImpl( const char* inPath,
H A DSerfHeadReqProcImpl.cxx32 SerfHeadReqProcImpl::SerfHeadReqProcImpl( const char* inPath, in SerfHeadReqProcImpl() argument
36 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfHeadReqProcImpl()
H A DSerfRequestProcessorImpl.cxx36 SerfRequestProcessorImpl::SerfRequestProcessorImpl( const char* inPath, in SerfRequestProcessorImpl() argument
38 : mPathStr( inPath ) in SerfRequestProcessorImpl()
H A DSerfPropPatchReqProcImpl.cxx36 SerfPropPatchReqProcImpl::SerfPropPatchReqProcImpl( const char* inPath, in SerfPropPatchReqProcImpl() argument
40 : SerfRequestProcessorImpl( inPath, inRequestHeaders ) in SerfPropPatchReqProcImpl()
H A DSerfMkColReqProcImpl.hxx35 SerfMkColReqProcImpl( const char* inPath,
H A DSerfDeleteReqProcImpl.hxx35 SerfDeleteReqProcImpl( const char* inPath,
H A DSerfRequestProcessor.cxx40 const rtl::OUString & inPath, in SerfRequestProcessor() argument
61 rtl::OUStringToOString( inPath, RTL_TEXTENCODING_UTF8 ).getStr() ); in SerfRequestProcessor()
H A DSerfPutReqProcImpl.hxx33 SerfPutReqProcImpl( const char* inPath,
H A DSerfPropPatchReqProcImpl.hxx36 SerfPropPatchReqProcImpl( const char* inPath,
/AOO41X/test/testcommon/source/org/openoffice/test/common/
H A DInstaller.java126 final String inPath = System.getenv("INPATH"); in findOpenofficeHome() local
127 if (srcRoot == null || inPath == null) { in findOpenofficeHome()
133 final File buildDir = new File(instsetoo_native, inPath); in findOpenofficeHome()
/AOO41X/main/solenv/bin/modules/installer/
H A Djavainstaller.pm449 my $inPath = "";
455 if ( defined( $ENV{ 'INPATH' } ) ) { $inPath = $ENV{'INPATH'}; }
460 …$installsdk = $solarVersion . $installer::globals::separator . $inPath . $installer::globals::sep…

12