OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pstore
(Results
1 - 2
of
2
) sorted by null
/external/chromium/chrome/browser/importer/
importer_unittest.cc
12
#include <
pstore
.h>
287
void ClearPStoreType(IPStore*
pstore
, const GUID* type, const GUID* subtype) {
289
HRESULT result =
pstore
->EnumItems(0, type, subtype, 0, item.Receive());
293
pstore
->DeleteItem(0, type, subtype, item_name, NULL, 0);
297
pstore
->DeleteSubtype(0, type, subtype, 0);
298
pstore
->DeleteType(0, type, 0);
301
void WritePStore(IPStore*
pstore
, const GUID* type, const GUID* subtype) {
320
HRESULT res =
pstore
->WriteItem(0, type, subtype, items[i].name,
356
base::win::ScopedComPtr<IPStore>
pstore
;
360
//
PStore
is read-only in Windows Vista
[
all
...]
ie_importer.cc
9
#include <
pstore
.h>
45
// A struct that hosts the information of AutoComplete data in
PStore
.
226
base::win::ScopedComPtr<IPStore, &IID_IPStore>
pstore
;
local
227
HRESULT result = PStoreCreateInstance(
pstore
.Receive(), 0, 0, 0);
237
result =
pstore
->EnumItems(0, &AutocompleteGUID,
240
pstore
.Release();
249
result =
pstore
->ReadItem(0, &AutocompleteGUID, &AutocompleteGUID,
273
pstore
.Release();
Completed in 4912 milliseconds