HomeSort by relevance Sort by last modified time
    Searched defs:supportedRates (Results 1 - 25 of 28) sorted by null

1 2

  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
CameraParametersTest.java 129 List<Integer> supportedRates = parameters.getSupportedPreviewFrameRates();
130 assertThat(supportedRates, notNullValue());
131 assertThat(supportedRates.size(), equalTo(3));
132 assertThat(supportedRates.get(0), equalTo(10));
  /device/google/contexthub/firmware/os/drivers/hall/
hall.c 120 static const uint32_t supportedRates[] =
129 .supportedRates = supportedRates,
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowCameraParametersTest.java 125 List<Integer> supportedRates = parameters.getSupportedPreviewFrameRates();
126 assertThat(supportedRates).isNotNull();
127 assertThat(supportedRates.size()).isEqualTo(3);
128 assertThat(supportedRates.get(0)).isEqualTo(10);
  /device/google/contexthub/firmware/os/drivers/hall_twopole/
hall_twopole.c 137 static const uint32_t supportedRates[] =
146 .supportedRates = supportedRates,
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCameraParameters.java 94 List<Integer> supportedRates = new ArrayList<Integer>();
95 supportedRates.add(10);
96 supportedRates.add(15);
97 supportedRates.add(30);
98 return supportedRates;
  /device/google/contexthub/firmware/os/drivers/intersil_isl29034/
isl29034.c 152 static const uint32_t supportedRates[] =
264 mData.alsTimerHandle = timTimerSet(sensorTimerLookupCommon(supportedRates, rateTimerVals, rate), 0, 50, alsTimerCallback, NULL, false);
291 .supportedRates = supportedRates,
  /device/google/contexthub/firmware/os/inc/
sensors.h 215 const uint32_t *supportedRates;
295 static inline uint64_t sensorTimerLookupCommon(const uint32_t *supportedRates, const uint64_t *timerVals, uint32_t wantedRate)
299 while ((rate = *supportedRates++) != 0) {
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowCamera.java 315 List<Integer> supportedRates = new ArrayList<>();
316 supportedRates.add(10);
317 supportedRates.add(15);
318 supportedRates.add(30);
319 return supportedRates;
  /device/google/contexthub/firmware/os/drivers/ams_tmd2772/
ams_tmd2772.c 195 static const uint32_t supportedRates[] =
353 mData.alsTimerHandle = timTimerSet(sensorTimerLookupCommon(supportedRates, rateTimerVals, rate), 0, 50, alsTimerCallback, NULL, false);
408 mData.proxTimerHandle = timTimerSet(sensorTimerLookupCommon(supportedRates, rateTimerVals, rate), 0, 50, proxTimerCallback, NULL, false);
436 .supportedRates = supportedRates,
457 .supportedRates = supportedRates,
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
NetworkDetail.java 153 InformationElementUtil.SupportedRates supportedRates =
154 new InformationElementUtil.SupportedRates();
155 InformationElementUtil.SupportedRates extendedSupportedRates =
156 new InformationElementUtil.SupportedRates();
193 supportedRates.from(ie);
285 // Only process the determination logic if we got a 'SupportedRates'
286 if (supportedRates.isValid()) {
287 maxRateA = supportedRates.mRates.get(supportedRates.mRates.size() - 1)
    [all...]
  /device/google/contexthub/firmware/os/drivers/ams_tmd4903/
ams_tmd4903.c 270 static const uint32_t supportedRates[] =
665 .supportedRates = supportedRates,
687 .supportedRates = supportedRates,
    [all...]
  /device/google/contexthub/firmware/os/drivers/rohm_rpr0521/
rohm_rpr0521.c 246 static const uint32_t supportedRates[] =
518 .supportedRates = supportedRates,
539 .supportedRates = supportedRates,
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 

Completed in 200 milliseconds

1 2