Searched defs:empty (Results 1 - 13 of 13) sorted by relevance

/system/core/libmemunreachable/
H A DLinkedList.h29 assert(node.empty());
42 bool empty() { return next_ == this && prev_ == this; } function in class:LinkedList
/system/extras/memory_replay/
H A DPointers.cpp55 err(1, "No empty entry found for 0x%" PRIxPTR "\n", key_pointer);
93 uintptr_t empty = 0; local
94 if (atomic_compare_exchange_strong(&pointers_[index].key_pointer, &empty,
/system/core/base/
H A Dutf8_test.cpp128 // An empty std::wstring should be converted to an empty std::string,
131 std::string empty; local
132 EXPECT_EQ(empty, WideToUTF8(wempty));
133 EXPECT_EQ(wempty, UTF8ToWide(empty));
/system/core/include/utils/
H A DString8.h40 * libutils and declaring an empty static String8, e.g.:
60 static inline const String8 empty();
255 inline const String8 String8::empty() { function in class:android::String8
H A DList.h180 /* returns true if the list is empty */
181 inline bool empty() const { return mpMiddle->getNext() == mpMiddle; } function in class:android::List
H A DVector.h65 * empty the vector
76 //! returns whether or not the vector is empty
143 //! pop the top of the stack (removes the last element). No-op if the stack's empty
193 inline bool empty() const{ return isEmpty(); } function in class:android::Vector
/system/keymaster/include/keymaster/
H A Dauthorization_set.h37 * Construct an empty, dynamically-allocated, growable AuthorizationSet. Does not actually
74 * builder, rather than copying it, so after this call the builder is empty.
141 * Returns true if the set is empty.
143 bool empty() const { return size() == 0; } function in class:keymaster::AuthorizationSet
/system/tpm/attestation/server/
H A Dpkcs11_key_store_test.cc245 if (label.empty() && value.empty()) {
248 } else if (!label.empty() && labels_.count(label) > 0) {
267 while (!found_objects_.empty() && object_list->size() < max_object_count) {
454 std::vector<uint64_t> empty; local
456 .WillRepeatedly(DoAll(SetArgumentPointee<3>(empty), Return(CKR_OK)));
577 // Test with an empty prefix.
/system/update_engine/common/
H A Dutils_unittest.cc57 // For invalid entries, should return the empty string.
62 brillo::Blob empty; local
63 EXPECT_FALSE(utils::ReadFile("/this/doesn't/exist", &empty));
78 EXPECT_TRUE(in_data.empty());
400 // Ensure we return false on empty strings or invalid base64.
/system/bt/btif/src/
H A Dbtif_sock_thread.c416 int empty = -1; local
428 else if(empty < 0 && ps[i].pfd.fd == -1)
429 empty = i;
431 if(empty >= 0)
434 set_poll(&ps[empty], fd, type, flags, user_id);
/system/core/include/sysutils/
H A DList.h181 /* returns true if the list is empty */
182 inline bool empty() const { return mpMiddle->getNext() == mpMiddle; } function in class:android::sysutils::List
/system/keymaster/
H A DList.h180 /* returns true if the list is empty */
181 inline bool empty() const { return mpMiddle->getNext() == mpMiddle; } function in class:android::List
/system/update_engine/payload_generator/
H A Dgenerate_delta_main.cc84 bool empty = channel.empty(); local
86 CHECK_EQ(channel.empty(), empty);
87 CHECK_EQ(board.empty(), empty);
88 CHECK_EQ(version.empty(), empty);
89 CHECK_EQ(key.empty(), empty);
[all...]

Completed in 6037 milliseconds