Searched refs:setSsidPostfix (Results 1 – 9 of 9) sorted by relevance
323 when(mP2pIfaceHalAidlMock.setSsidPostfix(anyString())).thenReturn(true); in testSetSsidPostfix()324 assertTrue(mDut.setSsidPostfix(PARAMS)); in testSetSsidPostfix()325 verify(mP2pIfaceHalAidlMock).setSsidPostfix(eq(PARAMS)); in testSetSsidPostfix()
623 doNothing().when(mISupplicantP2pIfaceMock).setSsidPostfix( in testSetSsidPostfix_success()627 assertFalse(mDut.setSsidPostfix(ssid)); in testSetSsidPostfix_success()629 assertTrue(mDut.setSsidPostfix(ssid)); in testSetSsidPostfix_success()630 assertFalse(mDut.setSsidPostfix(null)); in testSetSsidPostfix_success()641 .when(mISupplicantP2pIfaceMock).setSsidPostfix( in testSetSsidPostfix_failure()644 assertFalse(mDut.setSsidPostfix(ssid)); in testSetSsidPostfix_failure()657 .when(mISupplicantP2pIfaceMock).setSsidPostfix( in testSetSsidPostfix_exception()660 assertFalse(mDut.setSsidPostfix(ssid)); in testSetSsidPostfix_exception()
674 when(mISupplicantP2pIfaceMock.setSsidPostfix(eq(NativeUtil.decodeSsid("\"" + ssid + "\"")))) in testSetSsidPostfix_success()677 assertFalse(mDut.setSsidPostfix(ssid)); in testSetSsidPostfix_success()679 assertTrue(mDut.setSsidPostfix(ssid)); in testSetSsidPostfix_success()680 assertFalse(mDut.setSsidPostfix(null)); in testSetSsidPostfix_success()690 when(mISupplicantP2pIfaceMock.setSsidPostfix(eq(NativeUtil.decodeSsid("\"" + ssid + "\"")))) in testSetSsidPostfix_failure()692 assertFalse(mDut.setSsidPostfix(ssid)); in testSetSsidPostfix_failure()704 when(mISupplicantP2pIfaceMock.setSsidPostfix(eq(NativeUtil.decodeSsid("\"" + ssid + "\"")))) in testSetSsidPostfix_exception()706 assertFalse(mDut.setSsidPostfix(ssid)); in testSetSsidPostfix_exception()
523 when(mSupplicantP2pIfaceHalMock.setSsidPostfix(anyString())).thenReturn(true); in testSetP2pSsidPostfix()525 verify(mSupplicantP2pIfaceHalMock).setSsidPostfix(eq(TEST_SSID_POSTFIX)); in testSetP2pSsidPostfix()
181 boolean setSsidPostfix(String postfix); in setSsidPostfix() method
351 public boolean setSsidPostfix(String postfix) { in setSsidPostfix() method in SupplicantP2pIfaceHal357 return mP2pIfaceHal.setSsidPostfix(postfix); in setSsidPostfix()
426 return mSupplicantP2pIfaceHal.setSsidPostfix(postfix); in setP2pSsidPostfix()
749 public boolean setSsidPostfix(String postfix) { in setSsidPostfix() method in SupplicantP2pIfaceHalAidlImpl762 mISupplicantP2pIface.setSsidPostfix( in setSsidPostfix()
930 public boolean setSsidPostfix(String postfix) { in setSsidPostfix() method in SupplicantP2pIfaceHalHidlImpl941 result.setResult(mISupplicantP2pIface.setSsidPostfix( in setSsidPostfix()