Home
last modified time | relevance | path

Searched refs:rc (Results 26 – 50 of 200) sorted by relevance

12345678

/trunk/main/vcl/source/glyphs/
H A Dgcach_ftyp.cxx747 if( rc != FT_Err_Ok ) in FreetypeServerFont()
765 if( rc != FT_Err_Ok ) in FreetypeServerFont()
1329 FT_Error rc = -1; in InitGlyphData() local
1341 if( rc != FT_Err_Ok ) in InitGlyphData()
1345 if( rc != FT_Err_Ok ) in InitGlyphData()
1364 if( rc != FT_Err_Ok ) in InitGlyphData()
1434 FT_Error rc = -1; in GetGlyphBitmap1() local
1446 if( rc != FT_Err_Ok ) in GetGlyphBitmap1()
1449 if( rc != FT_Err_Ok ) in GetGlyphBitmap1()
1457 if( rc != FT_Err_Ok ) in GetGlyphBitmap1()
[all …]
/trunk/main/dtrans/source/os2/dnd/
H A DOTransferable.cxx117 int rc; in ~OTransferable() local
118 rc = unlink( fullpath); in ~OTransferable()
194 APIRET rc = DosAllocSharedMem( &pDTShare, DTSHARE_NAME, 0x100000, in RenderToDTShare() local
196 if (rc != NO_ERROR && in RenderToDTShare()
201 rc = DosAllocSharedMem( &pDTShare, DTSHARE_NAME, 0x100000, in RenderToDTShare()
205 if (rc == ERROR_ALREADY_EXISTS) in RenderToDTShare()
206 rc = DosGetNamedSharedMem( &pDTShare, DTSHARE_NAME, in RenderToDTShare()
208 if (rc) in RenderToDTShare()
374 APIRET rc; in getTransferData() local
401 rc = DosQueryMem((PVOID) pSharedMem, &size, &flags); in getTransferData()
[all …]
H A DDragSource.cxx234 APIRET rc; in render() local
264 rc = DosGetNamedSharedMem( (PPVOID) &pDTShareMem, DTShareName, in render()
266 debug_printf("DragSource::render DosGetNamedSharedMem rc:%d", rc); in render()
270 rc = DosSetMem( pDTShareMem, text.getLength()+1, PAG_DEFAULT | PAG_COMMIT); in render()
271 debug_printf("DragSource::render DosSetMem rc:%d", rc); in render()
297 rc = DosAllocSharedMem( (PPVOID) &pSharedMem, NULL, in render()
302 rc = WinQueryWindowProcess( pdxfer->hwndClient, &pid, &tid); in render()
303 rc = DosGiveSharedMem( pSharedMem, pid, PAG_READ); in render()
305 debug_printf("DragSource::render rc:%d", rc); in render()
350 rc = DrgPostTransferMsg( pdxfer->hwndClient, DM_RENDERCOMPLETE, pdxfer, in render()
[all …]
/trunk/main/sal/osl/os2/
H A Dfile_url.cxx1415 int rc; in osl_getAbsoluteFileURL() local
1435 rc = chdir( szBaseSysPath); in osl_getAbsoluteFileURL()
1443 rc = chdir( szCurrentDir ); in osl_getAbsoluteFileURL()
1471 FileBase::RC rc; in osl_getAbsoluteFileURL()
1476 if(FileBase::E_None != rc) in osl_getAbsoluteFileURL()
1477 return oslFileError(rc); in osl_getAbsoluteFileURL()
1496 if (FileBase::E_None == rc) in osl_getAbsoluteFileURL()
1502 return oslFileError(rc); in osl_getAbsoluteFileURL()
1570 FileBase::RC rc; in osl_searchFileURL() local
1575 if ((FileBase::E_None != rc) && (FileBase::E_INVAL == rc)) in osl_searchFileURL()
[all …]
H A Dsemaphor.c54 APIRET rc; in osl_createSemaphore() local
63 rc = DosCreateEventSem( NULL, in osl_createSemaphore()
67 if( rc != NO_ERROR ) in osl_createSemaphore()
110 APIRET rc; in osl_acquireSemaphore() local
123 rc = DosWaitEventSem(pSemaphoreImpl->hevReachedZero, SEM_INDEFINITE_WAIT ); in osl_acquireSemaphore()
132 return( rc == NO_ERROR ); in osl_acquireSemaphore()
144 APIRET rc; in osl_tryToAcquireSemaphore() local
168 APIRET rc; in osl_releaseSemaphore() local
183 return( rc == NO_ERROR ); in osl_releaseSemaphore()
H A Dmutex.c52 APIRET rc; in osl_createMutex() local
58 rc = DosCreateMutexSem( NULL, &pMutexImpl->m_Mutex, 0, FALSE ); in osl_createMutex()
59 if( rc != 0 ) in osl_createMutex()
91 APIRET rc = 0; in osl_acquireMutex() local
98 rc = DosRequestMutexSem( pMutexImpl->m_Mutex, SEM_INDEFINITE_WAIT ); in osl_acquireMutex()
106 return( rc == 0 ); in osl_acquireMutex()
135 APIRET rc; in osl_releaseMutex() local
145 rc = DosReleaseMutexSem( pMutexImpl->m_Mutex); in osl_releaseMutex()
H A Dthread.c99 BOOL rc; in oslWorkerWrapperFunction() local
122 rc = WinDestroyMsgQueue( pThreadImpl->m_hmq ); in oslWorkerWrapperFunction()
124 …ThreadImpl->m_ThreadId %d, WinDestroyMsgQueue rc=%d (should be 1)\n", pThreadImpl->m_ThreadId, rc); in oslWorkerWrapperFunction()
127 rc = WinTerminate( pThreadImpl->m_hab ); in oslWorkerWrapperFunction()
129 …ntf("pThreadImpl->m_ThreadId %d, WinTerminate rc=%d (should be 1)\n", pThreadImpl->m_ThreadId, rc); in oslWorkerWrapperFunction()
445 APIRET rc; in osl_isThreadRunning() local
456 rc = DosWaitThread( &pThreadImpl->m_ThreadId, DCWW_NOWAIT ); in osl_isThreadRunning()
458 return( rc != ERROR_INVALID_THREADID ); in osl_isThreadRunning()
715 APIRET rc; in _GetACP() local
719 rc = DosQueryCp( sizeof( aulCpList), aulCpList, &ulListSize); in _GetACP()
[all …]
H A Dconditn.c43 APIRET rc; in osl_createCondition() local
45 rc = DosCreateEventSem( NULL, /* unnamed semaphore */ in osl_createCondition()
51 if( rc == NO_ERROR ) in osl_createCondition()
94 APIRET rc; in osl_waitCondition() local
102 rc = DosWaitEventSem((HEV)Condition, nTimeout ); in osl_waitCondition()
103 if( rc == ERROR_TIMEOUT ) in osl_waitCondition()
105 if( rc != NO_ERROR ) in osl_waitCondition()
/trunk/main/desktop/util/
H A Dmakefile.mk44 RCFILES=verinfo.rc
47 RCFILES=ooverinfo2.rc
81 APP1DEPN= $(APP1RES) verinfo.rc
86 APP1VERINFO=verinfo.rc
111 APP5DEPN= $(APP1TARGETN) $(APP5RES) ooverinfo.rc
117 APP5VERINFO=ooverinfo.rc
126 APP5VERINFO=ooverinfo2.rc
135 APP6DEPN= $(APP1TARGETN) $(APP6RES) verinfo.rc
136 APP6VERINFO=verinfo.rc
149 APP7DEPN= $(APP1TARGETN) $(APP7RES) ooverinfo.rc
[all …]
/trunk/main/shell/source/unix/misc/
H A Dopen-url.c83 APIRET rc; in main() local
101 rc = PrfQueryProfileString(HINI_USER, "WPURLDEFAULTSETTINGS", in main()
104 rc = PrfQueryProfileString(HINI_USER, "WPURLDEFAULTSETTINGS", in main()
115 rc = PrfQueryProfileString(HINI_USER, "WPURLDEFAULTSETTINGS", in main()
155 rc = DosStartSession( &SData, &ulSID, &pid); in main()
157 if (rc != NO_ERROR && rc != ERROR_SMG_START_IN_BACKGROUND) { in main()
159 sprintf( szMessage, "Execution failed! rc: %d, failing module:%s", rc, szFail); in main()
H A Dsenddoc.c83 APIRET rc; in main() local
103 rc = PrfQueryProfileString(HINI_USER, "WPURLDEFAULTSETTINGS", in main()
106 rc = PrfQueryProfileString(HINI_USER, "WPURLDEFAULTSETTINGS", in main()
117 rc = PrfQueryProfileString(HINI_USER, "WPURLDEFAULTSETTINGS", in main()
187 rc = DosStartSession( &SData, &ulSID, &pid); in main()
189 if (rc != NO_ERROR && rc != ERROR_SMG_START_IN_BACKGROUND) { in main()
191 sprintf( szMessage, "Execution failed! rc: %d, failing module:%s", rc, szFail); in main()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/util/registry/
H A DConverterInfoMgr.java157 boolean rc = false; in removeByJar()
176 rc = true; in removeByJar()
179 return rc; in removeByJar()
195 boolean rc = false; in removeByName()
203 rc = true; in removeByName()
206 return rc; in removeByName()
412 boolean rc = false; in main()
415 rc = ConverterInfoMgr.removeByName(name); in main()
417 rc = ConverterInfoMgr.removeByJar(name); in main()
420 if (rc == true) { in main()
/trunk/main/xmlsecurity/tools/uno/
H A DTestTool.java815 File rc = null; in openFile() local
842 return rc; in openFile()
1183 Vector rc; in getUnsolvedReferenceIds() local
1187 rc = new Vector(); in getUnsolvedReferenceIds()
1195 return rc; in getUnsolvedReferenceIds()
1205 Vector rc; in getUnsolvedReferenceKeeperIds() local
1209 rc = new Vector(); in getUnsolvedReferenceKeeperIds()
1217 return rc; in getUnsolvedReferenceKeeperIds()
1227 Vector rc; in getUnsolvedReferenceRefNum() local
1231 rc = new Vector(); in getUnsolvedReferenceRefNum()
[all …]
H A DAdapterNode.java102 int rc = 0; in childCount() local
106 rc = m_domNode.getChildNodes().getLength(); in childCount()
109 return rc; in childCount()
117 String rc = null; in toString() local
155 rc = s; in toString()
158 return rc; in toString()
H A DSignatureEntity.java190 boolean rc = false; in hasReference()
197 rc = true; in hasReference()
202 return rc; in hasReference()
249 boolean rc = false; in setReference()
278 rc = true; in setReference()
281 return rc; in setReference()
H A DSecurityEntity.java152 boolean rc = false; in setKey()
171 rc = true; in setKey()
174 return rc; in setKey()
187 boolean rc = xMissionTaker.endMission(); in endMission()
195 return rc; in endMission()
/trunk/main/desktop/os2/source/applauncher/
H A Dlauncher.cxx35 APIRET rc; in main() local
54 rc = DosQueryExtLIBPATH( (PSZ)szLibpath, BEGIN_LIBPATH); in main()
66 rc = DosQueryExtLIBPATH( (PSZ)szLibpath, BEGIN_LIBPATH); in main()
97 rc = DosExecPgm(szFail, sizeof(szFail), in main()
100 if (rc) { in main()
102 …Execution failed! Contact technical support.\n\nReturn code: %d\nFailing module:%s\n", rc, szFail); in main()
103 rc = WinMessageBox( HWND_DESKTOP, HWND_DESKTOP, in main()
/trunk/main/extensions/source/update/check/
H A Ddownload.cxx88 oslFileError rc; in openFile() local
94 rc = osl_openFile(out.File.pData, &out.FileHandle, openFlags); in openFile()
96 if( osl_File_E_EXIST == rc && ! out.Handler->downloadTargetExists(out.File) ) in openFile()
102 } while( osl_File_E_EXIST == rc ); in openFile()
104 if( osl_File_E_None == rc ) in openFile()
388 …oslFileError rc = osl_openFile( aFile.pData, &out.FileHandle, osl_File_OpenFlag_Write | osl_File_O… in start() local
392 if( osl_File_E_EXIST == rc ) in start()
415 oslFileError rc = osl_openFile(aFile.pData, &out.FileHandle, osl_File_OpenFlag_Write); in start() local
417 if( osl_File_E_None == rc ) in start()
425 else if( osl_File_E_NOENT == rc ) // file has been deleted meanwhile... in start()
/trunk/main/embedserv/source/embed/
H A Dsyswinwrapper.cxx291 RECT rc; in RectsSet() local
300 IntersectRect(&rc, &rcPos, prcClip); in RectsSet()
302 SetWindowPos(m_hWnd, NULL, rc.left, rc.top, rc.right-rc.left in RectsSet()
303 , rc.bottom-rc.top, SWP_NOZORDER | SWP_NOACTIVATE); in RectsSet()
/trunk/main/desktop/source/app/
H A Duserinstall.cxx242 FileBase::RC rc = Directory::createPath(aUserPath); in create_user_install() local
243 if ((rc != FileBase::E_None) && (rc != FileBase::E_EXIST)) return UserInstall::E_Creation; in create_user_install()
248 rc = copy_recursive( in create_user_install()
251 if ((rc != FileBase::E_None) && (rc != FileBase::E_EXIST)) in create_user_install()
253 if ( rc == FileBase::E_NOSPC ) in create_user_install()
255 else if ( rc == FileBase::E_ACCES ) in create_user_install()
/trunk/main/solenv/bin/
H A Ddeliver.pl768 my $rc = copy($file, $temp_file);
770 return $rc;
781 my $rc = 0;
790 $rc = unlink($to) unless $opt_check;
792 return $rc;
816 $rc = '';
820 $rc = copy($from, $temp_file);
822 if ( $rc) {
825 if ( !$rc ) {
1087 my $rc = unlink($to);
[all …]
/trunk/main/sal/osl/unx/
H A Dutil.c252 int rc; in osl_InitSparcV9() local
254 rc = processor_info(0, &aInfo); in osl_InitSparcV9()
256 if ( rc != -1 ) { in osl_InitSparcV9()
305 int rc; in osl_InitSparcV9() local
306 rc = uname(&name); in osl_InitSparcV9()
307 if ( rc != -1 ) { in osl_InitSparcV9()
/trunk/main/sw/source/core/access/
H A Daccfield.cxx195 awt::Rectangle rc = getBounds(); in getAccessibleAtPoint() local
196 if(aPoint.X >= rc.X && aPoint.X <= rc.X + rc.Width && in getAccessibleAtPoint()
197 aPoint.Y >= rc.Y && aPoint.Y <= rc.Y + rc.Height ) in getAccessibleAtPoint()
/trunk/main/dtrans/source/os2/clipb/
H A DOs2Clipboard.cxx115 APIRET rc; in Os2Clipboard()
124 rc = WinOpenClipbrd(hAB); in Os2Clipboard()
125 rc = WinSetClipbrdViewer(hAB, hObjWnd); in Os2Clipboard()
126 rc = WinCloseClipbrd(hAB); in Os2Clipboard()
270 APIRET rc; in setContents() local
275 rc = DosAllocSharedMem( (PPVOID) &pSharedText, NULL, in setContents()
278 if (!rc) in setContents()
/trunk/main/vcl/aqua/source/gdi/
H A Datsfonts.cxx352 OSStatus rc = ATSFontGetTable( rATSFontRef, 0x68656164/*head*/, 0, 0, NULL, &nHeadLen ); in GetDevFontAttributes() local
353 if( (rc != noErr) || (nHeadLen <= 0) ) in GetDevFontAttributes()
365 rc = ATSUCountFontNames( nFontID, &nFontNameCount ); in GetDevFontAttributes()
366 if( rc != noErr ) in GetDevFontAttributes()
384 rc = ATSUGetIndFontName( nFontID, nNameIndex, 0, NULL, in GetDevFontAttributes()
386 if( rc != noErr ) in GetDevFontAttributes()
429 rc = ATSUGetIndFontName( nFontID, nNameIndex, nNameLength, &aNameBuffer[0], in GetDevFontAttributes()
431 if( rc != noErr ) in GetDevFontAttributes()

Completed in 115 milliseconds

12345678