Lines Matching refs:pError

158 uno::Any convertToException(GError *pError, const uno::Reference< uno::XInterface >& rContext, bool…  in convertToException()  argument
162 gint eCode = pError->code; in convertToException()
163 rtl::OUString sMessage(pError->message, strlen(pError->message), RTL_TEXTENCODING_UTF8); in convertToException()
164 g_error_free(pError); in convertToException()
292 uno::Any Content::mapGIOError( GError *pError ) in mapGIOError() argument
294 if (!pError) in mapGIOError()
297 return convertToException(pError, static_cast< cppu::OWeakObject * >(this), false); in mapGIOError()
516 GError *pError = NULL; in getPropertyValues() local
517 GFileInfo *pInfo = getGFileInfo(xEnv, &pError); in getPropertyValues()
519 ucbhelper::cancelCommandExecution(mapGIOError(pError), xEnv); in getPropertyValues()
624 GError *pError=NULL; in setPropertyValues() local
626 GFileInfo *pInfo = getGFileInfo(xEnv, &pError); in setPropertyValues()
632 ucbhelper::cancelCommandExecution(mapGIOError(pError), xEnv); in setPropertyValues()
635 if (pError) in setPropertyValues()
636 g_error_free(pError); in setPropertyValues()
814 GError *pError=NULL; in feedSink() local
815 GFileInputStream *pStream = g_file_read(getGFile(), NULL, &pError); in feedSink()
817 convertToException(pError, static_cast< cppu::OWeakObject * >(this)); in feedSink()
973 GError *pError = NULL; in execute() local
974 if (!g_file_delete( getGFile(), NULL, &pError)) in execute()
975 ucbhelper::cancelCommandExecution(mapGIOError(pError), xEnv); in execute()
1021 GError *pError = NULL; in insert() local
1030 if( !g_file_make_directory( getGFile(), NULL, &pError)) in insert()
1031 ucbhelper::cancelCommandExecution(mapGIOError(pError), xEnv); in insert()
1046 … if (!(pOutStream = g_file_replace(getGFile(), NULL, false, G_FILE_CREATE_PRIVATE, NULL, &pError))) in insert()
1047 ucbhelper::cancelCommandExecution(mapGIOError(pError), xEnv); in insert()
1051 if (!(pOutStream = g_file_create (getGFile(), G_FILE_CREATE_PRIVATE, NULL, &pError))) in insert()
1052 ucbhelper::cancelCommandExecution(mapGIOError(pError), xEnv); in insert()
1078 GError *pError = NULL; in transfer() local
1080 bSuccess = g_file_move(pSource, pDest, G_FILE_COPY_OVERWRITE, NULL, NULL, 0, &pError); in transfer()
1082 bSuccess = g_file_copy(pSource, pDest, G_FILE_COPY_OVERWRITE, NULL, NULL, 0, &pError); in transfer()
1086 ucbhelper::cancelCommandExecution(mapGIOError(pError), xEnv); in transfer()