Home
last modified time | relevance | path

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

/AOO41X/main/sal/qa/osl/profile/
H A Dosl_old_testprofile.cxx57 oslProfile hProfile; in test_profile() local
66 hProfile = osl_openProfile( ustrProfileName, 0 ); in test_profile()
67 if (hProfile != 0) in test_profile()
69 if (! osl_writeProfileBool( hProfile, "testsection", "testbool", 1 )) in test_profile()
72 osl_closeProfile( hProfile ); in test_profile()
76 hProfile = osl_openProfile( ustrProfileName2, 0 ); in test_profile()
77 if (hProfile != 0) in test_profile()
79 if (osl_writeProfileBool( hProfile, "testsection", "testbool", 1 )) in test_profile()
82 osl_closeProfile( hProfile ); in test_profile()
/AOO41X/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 …]
/AOO41X/main/sal/osl/w32/
H A Dprofile.cxx2338 oslProfile hProfile; in lookupProfile() local
2348 hProfile = osl_openProfile(strSVProfile, osl_Profile_READLOCK); in lookupProfile()
2349 if (hProfile) in lookupProfile()
2352 hProfile, SVERSION_SECTION, Buffer, sizeof(Buffer)); in lookupProfile()
2363 hProfile, SVERSION_SECTION, pChr, aDir, in lookupProfile()
2372 osl_closeProfile(hProfile); in lookupProfile()
2383 hProfile = osl_openProfile(strSVProfile, osl_Profile_READLOCK); in lookupProfile()
2384 if (hProfile) in lookupProfile()
2387 hProfile, SVERSION_SECTION, Buffer, sizeof(Buffer)); in lookupProfile()
2398 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()