Home
last modified time | relevance | path

Searched refs:hProfile (Results 1 – 4 of 4) sorted by relevance

/AOO42X/main/sal/qa/osl/profile/
H A Dosl_old_testprofile.cxx49 oslProfile hProfile; in TEST_F() local
58 hProfile = osl_openProfile( ustrProfileName, 0 ); in TEST_F()
59 if (hProfile != 0) in TEST_F()
61 if (! osl_writeProfileBool( hProfile, "testsection", "testbool", 1 )) in TEST_F()
64 osl_closeProfile( hProfile ); in TEST_F()
68 hProfile = osl_openProfile( ustrProfileName2, 0 ); in TEST_F()
69 if (hProfile != 0) in TEST_F()
71 if (osl_writeProfileBool( hProfile, "testsection", "testbool", 1 )) in TEST_F()
74 osl_closeProfile( hProfile ); in TEST_F()
/AOO42X/main/sal/osl/os2/
H A Dprofile.c2019 oslProfile hProfile;
2024 (hProfile = osl_openProfile(Profile, osl_Profile_READLOCK)))
2026 osl_getProfileSectionEntries(hProfile, SVERSION_SECTION,
2034 osl_readProfileString(hProfile, SVERSION_SECTION, pChr,
2043 osl_closeProfile(hProfile);
2050 (hProfile = osl_openProfile(Profile, osl_Profile_READLOCK)))
2052 osl_getProfileSectionEntries(hProfile, SVERSION_SECTION,
2060 osl_readProfileString(hProfile, SVERSION_SECTION, pChr,
2069 osl_closeProfile(hProfile);
2196 oslProfile hProfile;
[all …]
/AOO42X/main/sal/osl/w32/
H A Dprofile.cxx2286 oslProfile hProfile; in lookupProfile() local
2296 hProfile = osl_openProfile(strSVProfile, osl_Profile_READLOCK); in lookupProfile()
2297 if (hProfile) in lookupProfile()
2300 hProfile, SVERSION_SECTION, Buffer, sizeof(Buffer)); in lookupProfile()
2311 hProfile, SVERSION_SECTION, pChr, aDir, in lookupProfile()
2320 osl_closeProfile(hProfile); in lookupProfile()
2331 hProfile = osl_openProfile(strSVProfile, osl_Profile_READLOCK); in lookupProfile()
2332 if (hProfile) in lookupProfile()
2335 hProfile, SVERSION_SECTION, Buffer, sizeof(Buffer)); in lookupProfile()
2346 hProfile, SVERSION_SECTION, pChr, aDir, in lookupProfile()
[all …]
H A Dsecurity.c52 HANDLE hProfile; // Registry key handle - filled by function member
63 HANDLE hProfile
620 fUnloadUserProfile(hAccessToken, pi.hProfile); in osl_loadUserProfile()