Home
last modified time | relevance | path

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

/system/core/init/
Dkeychords.cpp40 Keychords::Keychords() : epoll_(nullptr), inotify_fd_(-1) {} in Keychords() function in android::init::Keychords
42 Keychords::~Keychords() noexcept { in ~Keychords()
50 Keychords::Mask::Mask(size_t bit) : bits_((bit + sizeof(mask_t) - 1) / sizeof(mask_t), 0) {} in Mask()
52 void Keychords::Mask::SetBit(size_t bit, bool value) { in SetBit()
62 bool Keychords::Mask::GetBit(size_t bit) const { in GetBit()
67 size_t Keychords::Mask::bytesize() const { in bytesize()
71 void* Keychords::Mask::data() { in data()
75 size_t Keychords::Mask::size() const { in size()
79 void Keychords::Mask::resize(size_t bit) { in resize()
86 Keychords::Mask::operator bool() const { in operator bool()
[all …]
Dkeychords.h30 class Keychords {
32 Keychords();
33 Keychords(const Keychords&) = delete;
34 Keychords(Keychords&&) = delete;
35 Keychords& operator=(const Keychords&) = delete;
36 Keychords& operator=(Keychords&&) = delete;
37 ~Keychords() noexcept;
Dkeychords_test.cpp201 Keychords keychords_;
Dinit.cpp729 Keychords keychords; in SecondStageMain()