Home
last modified time | relevance | path

Searched refs:flags (Results 101 – 125 of 189) sorted by path

12345678

/trunk/main/ridljar/java/ridl/src/main/java/com/sun/star/lib/uno/typeinfo/
H A DMethodTypeInfo.java48 public MethodTypeInfo(String name, int index, int flags, Type unoType) { in MethodTypeInfo() argument
49 super(name, flags); in MethodTypeInfo()
54 public MethodTypeInfo(String name, int index, int flags) in MethodTypeInfo() argument
56 this(name, index, flags, null); in MethodTypeInfo()
H A DParameterTypeInfo.java52 String name, String methodName, int index, int flags, Type unoType) in ParameterTypeInfo() argument
54 super(name, flags); in ParameterTypeInfo()
60 public ParameterTypeInfo(String name, String methodName, int index, int flags) in ParameterTypeInfo() argument
62 this(name, methodName, index, flags, null); in ParameterTypeInfo()
H A DTypeInfo.java52 public TypeInfo(String name, int flags) in TypeInfo() argument
55 m_flags = flags; in TypeInfo()
/trunk/main/sal/inc/osl/
H A Dsocket_decl.hxx561 oslSocketMsgFlag flags= osl_Socket_MsgNormal);
/trunk/main/sal/inc/rtl/
H A Dtres.h98 rtl_tres_getflags_ptr flags; member
119 rtl_TestResult* SAL_CALL rtl_tres_create( const sal_Char* meth, sal_uInt32 flags );
H A Dtres.hxx52 TestResult( const sal_Char* meth, sal_uInt32 flags = 0 ) in TestResult() argument
54 pData = rtl_tres_create( meth, flags ); in TestResult()
H A Dustring.h1650 rtl_TextEncoding encoding, sal_uInt32 flags) SAL_THROW_EXTERN_C();
/trunk/main/sal/osl/os2/
H A Dfile.cxx1319 flags &= ~O_EXLOCK; in osl_file_adjustLockFlags()
1320 flags |= O_SHLOCK; in osl_file_adjustLockFlags()
1331 return flags; in osl_file_adjustLockFlags()
1391 int flags = O_RDONLY; in osl_openFile() local
1395 flags = OPEN_WRITE_FLAGS; in osl_openFile()
1400 flags = OPEN_CREATE_FLAGS; in osl_openFile()
1405 flags &= ~(O_EXLOCK | O_SHLOCK | O_NONBLOCK); in osl_openFile()
1410 flags = osl_file_adjustLockFlags (buffer, flags); in osl_openFile()
1414 int fd = open( buffer, flags | O_BINARY, mode ); in osl_openFile()
1419 if (flags & O_NONBLOCK) in osl_openFile()
[all …]
H A Dprofile.c1151 ULONG flags; in openFileImpl() local
1178 flags = FILE_NORMAL | FILE_ARCHIVED; in openFileImpl()
1184 flags = FILE_NORMAL; in openFileImpl()
1189 … if (rc = DosOpen((PCSZ)pszFileName, &pFile->m_Handle, &action, 0, flags, attributes, mode, NULL)) in openFileImpl()
1196 … rc = DosOpen((PCSZ)pszFileName, &pFile->m_Handle, &action, 0, flags, attributes, mode, NULL); in openFileImpl()
H A Dsocket.c2791 int flags; in osl_enableNonBlockingMode() local
2802 flags = fcntl(pSocket->m_Socket, F_GETFL, 0); in osl_enableNonBlockingMode()
2805 flags |= O_NONBLOCK; in osl_enableNonBlockingMode()
2807 flags &= ~(O_NONBLOCK); in osl_enableNonBlockingMode()
2809 nRet = fcntl(pSocket->m_Socket, F_SETFL, flags); in osl_enableNonBlockingMode()
2825 int flags; in osl_isNonBlockingMode() local
2835 flags = fcntl(pSocket->m_Socket, F_GETFL, 0); in osl_isNonBlockingMode()
2837 if (flags == -1 || !(flags & O_NONBLOCK)) in osl_isNonBlockingMode()
/trunk/main/sal/osl/unx/
H A Dfile.cxx777 flags &= ~O_EXLOCK; in osl_file_adjustLockFlags()
778 flags |= O_SHLOCK; in osl_file_adjustLockFlags()
789 return flags; in osl_file_adjustLockFlags()
849 int flags = O_RDONLY; in osl_openFile() local
853 flags = OPEN_WRITE_FLAGS; in osl_openFile()
858 flags = OPEN_CREATE_FLAGS; in osl_openFile()
868 flags = osl_file_adjustLockFlags (buffer, flags); in osl_openFile()
872 int fd = open( buffer, flags, mode ); in osl_openFile()
877 if (flags & O_NONBLOCK) in osl_openFile()
949 if (flags & O_RDWR) in osl_openFile()
[all …]
H A Dpipe.c402 int s, flags; in osl_acceptPipe() local
449 if (!((flags = fcntl(s, F_GETFD, 0)) < 0)) in osl_acceptPipe()
451 flags |= FD_CLOEXEC; in osl_acceptPipe()
452 if (fcntl(s, F_SETFD, flags) < 0) in osl_acceptPipe()
H A Dprocess.c1092 unsigned long flags; /* flags dunno */ member
1189 …&procstat->flags, &procstat->minflt, &procstat->cminflt, &procstat->majflt, &procstat… in osl_getProcStat()
H A Dsecurity.c164 int (*pam_authenticate) (pam_handle_t *pamh, int flags);
165 int (*pam_acct_mgmt) (pam_handle_t *pamh, int flags);
H A Dsocket.c2761 int flags; in osl_enableNonBlockingMode() local
2772 flags = fcntl(pSocket->m_Socket, F_GETFL, 0); in osl_enableNonBlockingMode()
2775 flags |= O_NONBLOCK; in osl_enableNonBlockingMode()
2777 flags &= ~(O_NONBLOCK); in osl_enableNonBlockingMode()
2779 nRet = fcntl(pSocket->m_Socket, F_SETFL, flags); in osl_enableNonBlockingMode()
2795 int flags; in osl_isNonBlockingMode() local
2805 flags = fcntl(pSocket->m_Socket, F_GETFL, 0); in osl_isNonBlockingMode()
2807 if (flags == -1 || !(flags & O_NONBLOCK)) in osl_isNonBlockingMode()
/trunk/main/sal/osl/w32/
H A Dfile_dirvol.cxx1442 DWORD flags; in get_filesystem_attributes() local
1445 if (GetVolumeInformation(pszPath, vn, MAX_PATH+1, &serial, &mcl, &flags, fsn, MAX_PATH+1)) in get_filesystem_attributes()
1464 if (flags & FS_CASE_IS_PRESERVED) in get_filesystem_attributes()
H A Dprocimpl.cxx451 DWORD flags = NORMAL_PRIORITY_CLASS; in osl_executeProcess_WithRedirectedIO() local
462 flags |= CREATE_NEW_CONSOLE; in osl_executeProcess_WithRedirectedIO()
497 flags |= CREATE_UNICODE_ENVIRONMENT; in osl_executeProcess_WithRedirectedIO()
507 if ((Options & osl_Process_DETACHED) && !(flags & CREATE_NEW_CONSOLE)) in osl_executeProcess_WithRedirectedIO()
508 flags |= DETACHED_PROCESS; in osl_executeProcess_WithRedirectedIO()
544 flags |= CREATE_NO_WINDOW; // ignored for non-console in osl_executeProcess_WithRedirectedIO()
571 b_inherit_handles, flags, p_environment, p_cwd, in osl_executeProcess_WithRedirectedIO()
578 b_inherit_handles, flags, p_environment, p_cwd, in osl_executeProcess_WithRedirectedIO()
H A Dtempfile.cxx134 DWORD flags = FILE_ATTRIBUTE_NORMAL; in osl_win32_CreateFile_impl_() local
140 flags |= FILE_FLAG_DELETE_ON_CLOSE; in osl_win32_CreateFile_impl_()
148 flags, in osl_win32_CreateFile_impl_()
/trunk/main/sal/rtl/source/
H A Dalloc_arena.c943 int flags in rtl_arena_create() argument
949 (void) flags; /* unused */ in rtl_arena_create()
H A Dalloc_cache.c881 int flags in rtl_cache_activate() argument
928 if (flags & RTL_CACHE_FLAG_QUANTUMCACHE) in rtl_cache_activate()
963 if (flags & RTL_CACHE_FLAG_BULKDESTROY) in rtl_cache_activate()
970 if (!(flags & RTL_CACHE_FLAG_NOMAGAZINE)) in rtl_cache_activate()
1141 int flags in rtl_cache_create() argument
1172 flags in rtl_cache_create()
H A Dtres.c165 rtl_TestResult* rtl_tres_create( const sal_Char* meth, sal_uInt32 flags ) in rtl_tres_create() argument
176 pData->m_state->m_flags = flags; /* ...option Bitmap */ in rtl_tres_create()
H A Dustring.c925 rtl_TextEncoding encoding, sal_uInt32 flags) SAL_THROW_EXTERN_C() in rtl_convertStringToUString() argument
928 rtl_string2UString_status(target, source, length, encoding, flags, &info); in rtl_convertStringToUString()
/trunk/main/sal/systools/win32/uwinapi/
H A Dwin95sys.h142 DWORD flags; // Valid flags depend on what type of object this is member
161 DWORD flags; // 20h member
/trunk/main/sal/textenc/
H A Dconvertsinglebytetobmpunicode.cxx41 sal_uInt32 flags, sal_uInt32 * info, sal_Size * srcCvtBytes) in rtl_textenc_convertSingleByteToBmpUnicode() argument
64 undefined, false, b, flags, &destBufPtr, destBufEnd, in rtl_textenc_convertSingleByteToBmpUnicode()
94 sal_Size destBytes, sal_uInt32 flags, sal_uInt32 * info, in rtl_textenc_convertBmpUnicodeToSingleByte() argument
152 undefined, c, flags, &destBufPtr, destBufEnd, &infoFlags, 0, in rtl_textenc_convertBmpUnicodeToSingleByte()
178 if ((flags & RTL_UNICODETOTEXT_FLAGS_FLUSH) != 0) { in rtl_textenc_convertBmpUnicodeToSingleByte()
182 false, 0, flags, &destBufPtr, destBufEnd, &infoFlags, 0, in rtl_textenc_convertBmpUnicodeToSingleByte()
H A Dconvertsinglebytetobmpunicode.hxx109 sal_uInt32 flags, sal_uInt32 * info, sal_Size * srcCvtBytes);
119 sal_Size destBytes, sal_uInt32 flags, sal_uInt32 * info,

Completed in 142 milliseconds

12345678