OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StashInfo
(Results
1 - 3
of
3
) sorted by null
/bootable/recovery/updater/include/private/
commands.h
67
class
StashInfo
{
69
StashInfo
() = default;
71
StashInfo
(std::string id, RangeSet ranges) : id_(std::move(id)), ranges_(std::move(ranges)) {}
85
bool operator==(const
StashInfo
& other) const {
90
friend std::ostream& operator<<(std::ostream& os, const
StashInfo
& stash);
98
std::ostream& operator<<(std::ostream& os, const
StashInfo
& stash);
106
SourceInfo(std::string hash, RangeSet ranges, RangeSet location, std::vector<
StashInfo
> stashes)
159
std::vector<
StashInfo
> stashes_;
234
// command consists of one or several args, namely TargetInfo, SourceInfo,
StashInfo
and PatchInfo.
274
// - Meaningful args:
StashInfo
[
all
...]
/bootable/recovery/tests/unit/
commands_test.cpp
85
StashInfo
("6ebcf8cf1f6be0bc49e7d4a864214251925d1d15", RangeSet({ { 0, 2 } })),
113
StashInfo
("9eedf00d11061549e32503cadf054ec6fbfa7a23", RangeSet({ { 94, 95 } })),
177
ASSERT_EQ(
StashInfo
(), command.stash());
209
ASSERT_EQ(
StashInfo
(), command.stash());
225
ASSERT_EQ(
StashInfo
(), command.stash());
241
ASSERT_EQ(
StashInfo
("hash1", RangeSet()), command.stash());
265
ASSERT_EQ(
StashInfo
(), command.stash());
288
ASSERT_EQ(
StashInfo
(), command.stash());
304
ASSERT_EQ(
StashInfo
(), command.stash());
320
ASSERT_EQ(
StashInfo
("hash1", RangeSet({ { 5, 10 } })), command.stash())
[
all
...]
/bootable/recovery/updater/
commands.cpp
151
std::vector<
StashInfo
> stashes;
192
StashInfo
stash_info;
220
stash_info =
StashInfo
(id, src_ranges);
228
stash_info =
StashInfo
(tokens[pos++], {});
350
for (const
StashInfo
& stash : stashes_) {
386
std::ostream& operator<<(std::ostream& os, const
StashInfo
& stash) {
Completed in 1887 milliseconds