Lines Matching refs:sFullPath

670     OUStringBuffer  sFullPath(sFullKeyName.getLength());  in createKey()  local
673 sFullPath.append((sal_Unicode)'/'); in createKey()
681 if (rStoreDir.create(pKey->getStoreFile(), sFullPath.getStr(), token, KEY_MODE_CREATE)) in createKey()
686 sFullPath.append(token); in createKey()
687 sFullPath.append((sal_Unicode)'/'); in createKey()
811 OUString sFullPath(sFullKeyName); in eraseKey() local
824 sFullPath = sFullKeyName.copy(0, keyName.lastIndexOf('/') + 1); in eraseKey()
833 if (sFullPath.getLength() > 1) in eraseKey()
834 sFullPath += ROOT; in eraseKey()
853 if ( sFile.isValid() && sFile.remove(sFullPath, tmpName) ) in eraseKey()
887 OUString sFullPath(pKey->getName()); in deleteSubkeysAndValues() local
889 if (sFullPath.getLength() > 1) in deleteSubkeysAndValues()
890 sFullPath += ROOT; in deleteSubkeysAndValues()
892 if ( ((OStoreFile&)pKey->getStoreFile()).remove(sFullPath, keyName) ) in deleteSubkeysAndValues()
1349 OUString sFullPath; in loadAndSaveKeys() local
1352 sFullPath += pTargetKey->getName(); in loadAndSaveKeys()
1353 sFullPath += sRelPath; in loadAndSaveKeys()
1354 if (sRelPath.getLength() > 1 || sFullPath.getLength() == 0) in loadAndSaveKeys()
1355 sFullPath += ROOT; in loadAndSaveKeys()
1357 OUString sFullKeyName = sFullPath; in loadAndSaveKeys()
1361 if (rStoreDir.create(pTargetKey->getStoreFile(), sFullPath, keyName, KEY_MODE_CREATE)) in loadAndSaveKeys()
1465 OUString sFullPath(sPath); in dumpValue() local
1476 if (sFullPath.getLength() > 1) in dumpValue()
1478 sFullPath += ROOT; in dumpValue()
1480 if (rValue.create(m_file, sFullPath, sName, accessMode)) in dumpValue()
1702 OUString sFullPath(sPath); in dumpKey() local
1714 if (sFullPath.getLength() > 1) in dumpKey()
1715 sFullPath += ROOT; in dumpKey()
1717 storeError _err = rStoreDir.create(m_file, sFullPath, sName, accessMode); in dumpKey()
1727 OUString sSubPath(sFullPath); in dumpKey()