HomeSort by relevance Sort by last modified time
    Searched refs:available (Results 26 - 50 of 3711) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/modules/audio_device/linux/
audio_mixer_manager_alsa_linux.h 34 int32_t SpeakerVolumeIsAvailable(bool& available);
35 int32_t SpeakerMuteIsAvailable(bool& available);
38 int32_t MicrophoneMuteIsAvailable(bool& available);
41 int32_t MicrophoneBoostIsAvailable(bool& available);
44 int32_t MicrophoneVolumeIsAvailable(bool& available);
  /cts/tests/tests/hardware/src/android/hardware/cts/
GlUtils.java 61 String[] available = getExtensions(); local
62 Arrays.sort(available);
64 if (Arrays.binarySearch(available, extension) < 0) return false;
  /external/libmojo/third_party/catapult/devil/devil/android/tools/
script_common.py 20 available = set(str(d) for d in devices)
21 missing = requested.difference(available)
25 for d in available.intersection(requested))
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ActiveModeManager.java 29 * Base class for available WiFi operating modes.
55 * @param available boolean indicating if scanning is available
57 default void sendScanAvailableBroadcast(Context context, boolean available) {
58 Log.d(TAG, "sending scan available broadcast: " + available);
61 if (available) {
  /external/webrtc/webrtc/modules/audio_device/test/
func_test_manager.cc 98 // choose enter out of all available keys
1014 (b == true) ? (sprintf(str, " %-17s: available\n", #a)) : (sprintf(str, " %-17s: NA\n", #a)); \
1023 bool available(false);
1039 EXPECT_EQ(0, audioDevice->PlayoutIsAvailable(&available));
1040 PRINT_STR(Playout, available);
1041 if (available)
1043 EXPECT_EQ(0, audioDevice->StereoPlayoutIsAvailable(&available));
1044 PRINT_STR(Stereo Playout, available);
1050 EXPECT_EQ(0, audioDevice->SpeakerVolumeIsAvailable(&available));
1051 PRINT_STR(Speaker Volume, available);
    [all...]
audio_device_test_api.cc 269 FAIL() << "API Test is not available on ALSA on Linux!";
465 bool available; local
469 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available));
475 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available));
482 EXPECT_EQ(0, audio_device_->PlayoutIsAvailable(&available));
488 bool available; local
492 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available));
497 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available));
504 EXPECT_EQ(0, audio_device_->RecordingIsAvailable(&available));
520 bool available; local
571 bool available; local
610 bool available; local
667 bool available; local
789 bool available; local
823 bool available; local
846 bool available; local
884 bool available; local
990 bool available; local
1034 bool available; local
1123 bool available; local
1149 bool available; local
1175 bool available; local
1201 bool available; local
1259 bool available; local
1308 bool available; local
1384 bool available; local
1453 bool available; local
1504 bool available; local
    [all...]
  /external/valgrind/drd/tests/
fp_race.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
sem_as_mutex.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
sem_open.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
sem_as_mutex3.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
sem_open3.stderr.exp 7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 37 * Return number of bytes available before this stream will block.
39 public int available() throws IOException { method in class:BluetoothInputStream
40 return mSocket.available();
  /packages/apps/Car/Hvac/src/com/android/car/hvac/controllers/
TemperatureController.java 70 final boolean available = value.getStatus() == CarPropertyValue.STATUS_AVAILABLE;
71 mPassengerTempBarExpanded.setAvailable(available);
72 mPassengerTempBarCollapsed.setAvailable(available);
73 if (available) {
82 final boolean available = value.getStatus() == CarPropertyValue.STATUS_AVAILABLE;
83 mDriverTempBarExpanded.setAvailable(available);
84 mDriverTempBarExpanded.setAvailable(available);
85 if (available) {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i860/
dir-intel03-err.l 2 .*:8: Error: Directive .atmp available only with -mintel-syntax option
4 .*:10: Error: Directive .dual available only with -mintel-syntax option
5 .*:13: Error: Directive .enddual available only with -mintel-syntax option
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DeflaterInputStreamTest.java 60 * DeflaterInputStream#available()
65 assertEquals(1, dis.available());
67 assertEquals(1, dis.available());
69 assertEquals(0, dis.available());
71 assertEquals(0, dis.available());
74 dis.available();
87 assertEquals(1, dis.available());
90 dis.available();
133 assertEquals(1, dis.available());
135 assertEquals(1, dis.available());
    [all...]
  /external/webrtc/webrtc/modules/audio_device/include/
fake_audio_device.h 58 virtual int32_t PlayoutIsAvailable(bool* available) { return 0; }
61 virtual int32_t RecordingIsAvailable(bool* available) { return 0; }
79 virtual int32_t SpeakerVolumeIsAvailable(bool* available) { return 0; }
85 virtual int32_t MicrophoneVolumeIsAvailable(bool* available) { return 0; }
93 virtual int32_t SpeakerMuteIsAvailable(bool* available) { return 0; }
96 virtual int32_t MicrophoneMuteIsAvailable(bool* available) { return 0; }
99 virtual int32_t MicrophoneBoostIsAvailable(bool* available) { return 0; }
102 virtual int32_t StereoPlayoutIsAvailable(bool* available) const {
103 *available = false;
107 virtual int32_t StereoRecordingIsAvailable(bool* available) const
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvparser/
mkvreader.h 27 virtual int Length(long long* total, long long* available);
  /external/llvm/test/MC/Mips/mips32r6/
invalid.s 1 # Instructions that are available for the current ISA but should be rejected by
  /external/llvm/test/MC/Mips/mips64r6/
invalid.s 1 # Instructions that are available for the current ISA but should be rejected by
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
FlashlightController.java 43 * @param available true if the flashlight is currently available.
45 void onFlashlightAvailabilityChanged(boolean available);
  /hardware/google/av/codec2/1.0/mts/common/
README.md 4 Functionality of master is to enumerate all the Codec2 components available in C2 media service.
9 Functionality of componet is to test common functionality across all the Codec2 components available in C2 media service. For a standard C2 component, these tests are expected to pass.
  /libcore/ojluni/src/main/java/java/io/
ObjectInput.java 55 * available.
64 * block until some input is available.
74 * block until some input is available.
95 * @return the number of available bytes.
98 public int available() throws IOException; method in interface:ObjectInput
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
ParameterIconStyle.java 31 caller.available(mBitmaps[index]);
  /packages/apps/Settings/src/com/android/settings/enterprise/
EnterpriseInstalledPackagesPreferenceController.java 44 final boolean available;
46 available = false;
48 available = true;
54 preference.setVisible(available);
  /system/core/libstats/
statsd_writer.h 36 int (*available)(); /* Does not cause resources to be taken */ member in struct:android_log_transport_write

Completed in 662 milliseconds

12 3 4 5 6 7 8 91011>>