Loading wifi/aidl/vts/functional/wifi_nan_iface_aidl_test.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -123,7 +123,7 @@ class WifiNanIfaceAidlTest : public testing::TestWithParam<std::string> { // Used as a mechanism to inform the test about data/event callbacks. inline void notify(CallbackType callbackType) { std::unique_lock<std::mutex> lock(mtx_); callback_event_bitmap_ |= (0x1 << callbackType); callback_event_bitmap_ |= (UINT64_C(0x1) << callbackType); cv_.notify_one(); } Loading @@ -143,7 +143,7 @@ class WifiNanIfaceAidlTest : public testing::TestWithParam<std::string> { } inline bool receivedCallback(CallbackType waitForCallbackType) { return callback_event_bitmap_ & (0x1 << waitForCallbackType); return callback_event_bitmap_ & (UINT64_C(0x1) << waitForCallbackType); } class WifiNanIfaceEventCallback : public BnWifiNanIfaceEventCallback { Loading Loading
wifi/aidl/vts/functional/wifi_nan_iface_aidl_test.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -123,7 +123,7 @@ class WifiNanIfaceAidlTest : public testing::TestWithParam<std::string> { // Used as a mechanism to inform the test about data/event callbacks. inline void notify(CallbackType callbackType) { std::unique_lock<std::mutex> lock(mtx_); callback_event_bitmap_ |= (0x1 << callbackType); callback_event_bitmap_ |= (UINT64_C(0x1) << callbackType); cv_.notify_one(); } Loading @@ -143,7 +143,7 @@ class WifiNanIfaceAidlTest : public testing::TestWithParam<std::string> { } inline bool receivedCallback(CallbackType waitForCallbackType) { return callback_event_bitmap_ & (0x1 << waitForCallbackType); return callback_event_bitmap_ & (UINT64_C(0x1) << waitForCallbackType); } class WifiNanIfaceEventCallback : public BnWifiNanIfaceEventCallback { Loading