Searched defs:isOk (Results 1 - 6 of 6) sorted by relevance

/system/netd/libnetdutils/include/netdutils/
H A DStatus.h65 inline bool isOk(const Status& status) { function in namespace:android::netdutils
92 if (!isOk(tmp)) { \
/system/security/keystore/include/keystore/
H A Dkeystore_return_types.h61 inline bool isOk() const { function in class:keystore::KeyStoreServiceReturnCode
133 inline bool isOk() const { function in class:keystore::KeyStoreNativeReturnCode
H A Dkeymaster_tags.h59 * value1.isOk() yields false, but value2.isOk() yields true, thus value2.value() is save to access.
287 * !isOk(). If the wrapped type is a pointer or value and !isOk(), it is still safe to access the
311 bool isOk() const { return !null_; } function in class:keystore::NullOr
323 if (v.isOk()) return v;
329 if (head.isOk()) return head;
338 if (optional.isOk()) return optional.value();
/system/security/keystore/
H A Dkeystore_attestation_id.h36 bool isOk() const { return NO_ERROR == _status; } function in class:android::security::StatusOr
56 * .isOk() before accessing.
/system/libhidl/base/include/hidl/
H A DStatus.h48 // if (!remote_exception.isOk()) {
109 bool isOk() const { return mException == EX_NONE; } function in class:android::hardware::final
158 bool isOk() const { function in class:android::hardware::details::return_status
160 return mStatus.isOk();
206 return isOk() ? mVal : t;
235 return isOk() ? mVal : t;
263 if (other.mStatus.isOk() || !other.mCheckedStatus) {
/system/tools/hidl/test/
H A Dhidl_test_client.cpp70 #define EXPECT_OK(__ret__) EXPECT_TRUE(isOk(__ret__))
71 #define EXPECT_FAIL(__ret__) EXPECT_FALSE(isOk(__ret__))
142 static inline ::testing::AssertionResult isOk(const ::android::hardware::Return<T> &ret) { function
143 return ret.isOk()
766 if (retService.isOk()) {
777 if (unregisterRet.isOk()) {
1481 if (!ret.isOk()) {

Completed in 149 milliseconds