HomeSort by relevance Sort by last modified time
    Searched refs:ComponentUnpacker (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/chrome/browser/component_updater/
component_patcher_operation.cc 56 ComponentUnpacker::Error DeltaUpdateOp::Run(base::DictionaryValue* command_args,
65 return ComponentUnpacker::kDeltaBadCommands;
69 ComponentUnpacker::Error parse_result = DoParseArguments(
71 if (parse_result != ComponentUnpacker::kNone)
77 return ComponentUnpacker::kIoError;
80 ComponentUnpacker::Error run_result = DoRun(patcher, error);
81 if (run_result != ComponentUnpacker::kNone)
89 ComponentUnpacker::Error DeltaUpdateOp::CheckHash() {
93 return ComponentUnpacker::kDeltaVerificationFailure;
97 return ComponentUnpacker::kDeltaVerificationFailure
    [all...]
component_patcher.cc 39 ComponentUnpacker::Error ComponentPatcherCrossPlatform::Patch(
45 return ComponentUnpacker::kDeltaUnsupportedCommand;
52 ComponentUnpacker::Error DifferentialUpdatePatch(
61 return ComponentUnpacker::kDeltaBadCommands;
66 return ComponentUnpacker::kDeltaBadCommands;
71 return ComponentUnpacker::kDeltaUnsupportedCommand;
73 ComponentUnpacker::Error result = operation->Run(
75 if (result != ComponentUnpacker::kNone)
79 return ComponentUnpacker::kNone;
component_patcher_operation.h 32 ComponentUnpacker::Error Run(
45 ComponentUnpacker::Error CheckHash();
50 virtual ComponentUnpacker::Error DoParseArguments(
58 virtual ComponentUnpacker::Error DoRun(ComponentPatcher* patcher,
73 virtual ComponentUnpacker::Error DoParseArguments(
78 virtual ComponentUnpacker::Error DoRun(ComponentPatcher* patcher,
96 virtual ComponentUnpacker::Error DoParseArguments(
101 virtual ComponentUnpacker::Error DoRun(ComponentPatcher* patcher,
118 virtual ComponentUnpacker::Error DoParseArguments(
123 virtual ComponentUnpacker::Error DoRun(ComponentPatcher* patcher
    [all...]
component_patcher.h 54 virtual ComponentUnpacker::Error Patch(PatchType patch_type,
65 virtual ComponentUnpacker::Error Patch(PatchType patch_type,
79 ComponentUnpacker::Error DifferentialUpdatePatch(
component_unpacker.h 34 class ComponentUnpacker {
60 ComponentUnpacker(const std::vector<uint8>& pk_hash,
68 ~ComponentUnpacker();
component_patcher_win.h 15 virtual ComponentUnpacker::Error Patch(PatchType patch_type,
component_patcher_win.cc 64 ComponentUnpacker::Error ComponentPatcherWin::Patch(
74 return ComponentUnpacker::kDeltaPatchProcessFailure;
91 return ComponentUnpacker::kDeltaPatchProcessFailure;
107 return ComponentUnpacker::kDeltaPatchProcessFailure;
111 return *error ? ComponentUnpacker::kDeltaOperationFailure :
112 ComponentUnpacker::kNone;
component_unpacker.cc 112 ComponentUnpacker::ComponentUnpacker(const std::vector<uint8>& pk_hash,
167 ComponentUnpacker::Error result = DifferentialUpdatePatch(unpack_diff_path,
207 ComponentUnpacker::~ComponentUnpacker() {
component_updater_service.cc 297 ComponentUnpacker::Error error,
    [all...]
  /external/chromium_org/chrome/browser/component_updater/test/
component_patcher_mock.h 19 virtual ComponentUnpacker::Error Patch(PatchType patch_type,
component_patcher_unittest.cc 39 ComponentUnpacker::Error MockComponentPatcher::Patch(
52 return ComponentUnpacker::kNone;
59 return ComponentUnpacker::kNone;
62 return ComponentUnpacker::kDeltaOperationFailure;
79 ComponentUnpacker::Error result = op->Run(command_args.get(),
86 EXPECT_EQ(ComponentUnpacker::kNone, result);
107 ComponentUnpacker::Error result = op->Run(command_args.get(),
113 EXPECT_EQ(ComponentUnpacker::kNone, result);
139 ComponentUnpacker::Error result = op->Run(command_args.get(),
145 EXPECT_EQ(ComponentUnpacker::kNone, result)
    [all...]

Completed in 76 milliseconds