HomeSort by relevance Sort by last modified time
    Searched refs:rangeCancel (Results 1 - 8 of 8) sorted by null

  /hardware/interfaces/wifi/1.0/
IWifiRttController.hal 82 rangeCancel(CommandId cmdId, vec<MacAddress> addrs)
  /hardware/interfaces/wifi/1.2/default/
wifi_rtt_controller.h 54 Return<void> rangeCancel(uint32_t cmd_id,
wifi_rtt_controller.cpp 76 Return<void> WifiRttController::rangeCancel(
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/rtt/
RttNativeTest.java 97 when(mockRttController.rangeCancel(anyInt(), any(ArrayList.class))).thenReturn(
352 mDut.rangeCancel(cmdId, macAddresses);
355 verify(mockRttController).rangeCancel(cmdId, macAddresses);
RttServiceImplTest.java 503 verify(mockNative).rangeCancel(eq(mIntCaptor.getValue()),
570 verify(mockNative).rangeCancel(eq(mIntCaptor.getValue()), any());
620 verify(mockNative).rangeCancel(eq(mIntCaptor.getValue()), any());
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/rtt/
RttNative.java 216 public boolean rangeCancel(int cmdId, ArrayList<byte[]> macAddresses) {
217 if (mDbg) Log.v(TAG, "rangeCancel: cmdId=" + cmdId);
220 Log.e(TAG, "rangeCancel: RttController is null");
225 WifiStatus status = mIWifiRttController.rangeCancel(cmdId, macAddresses);
227 Log.e(TAG, "rangeCancel: cannot issue range cancel -- code=" + status.code);
231 Log.e(TAG, "rangeCancel: exception issuing range cancel: " + e);
RttServiceImpl.java 568 mRttNative.rangeCancel(rri.cmdId, macAddresses);
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiVendorHal.java     [all...]

Completed in 286 milliseconds