Searched defs:available (Results 1 - 25 of 45) sorted by relevance

12

/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareMonitorCallback.java40 * @param available Indicates whether the system is currently available or not.
44 public void onMonitoringSystemChange(int monitoringType, boolean available, Location location) { argument
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothInputStream.java37 * Return number of bytes available before this stream will block.
39 public int available() throws IOException { method in class:BluetoothInputStream
40 return mSocket.available();
H A DBluetoothSocket.java142 * @throws IOException On error, for example Bluetooth not available, or
209 * @throws IOException On error, for example Bluetooth not available, or
412 /*package*/ int available() throws IOException { method in class:BluetoothSocket
413 if (VDBG) Log.d(TAG, "available: " + mSocketIS);
414 return mSocketIS.available();
/frameworks/base/core/java/com/android/internal/util/
H A DBitwiseInputStream.java59 * Return the number of bit still available for reading.
61 public int available() { method in class:BitwiseInputStream
/frameworks/base/obex/javax/obex/
H A DPrivateInputStream.java74 public synchronized int available() throws IOException { method in class:PrivateInputStream
81 * returned as an int in the range 0 to 255. If no byte is available because
83 * method blocks until input data is available, the end of the stream is
/frameworks/av/media/libnbaio/
H A DAudioBufferProviderSource.cpp65 size_t available = mBuffer.frameCount - mConsumed; local
66 if (CC_UNLIKELY(count > available)) {
67 count = available;
70 // available is zero, but both are unlikely so don't check for that
112 // don't you just want to fall through to the size_t available line?
118 size_t available = mBuffer.frameCount - mConsumed; local
119 if (CC_UNLIKELY(count > available)) {
120 count = available;
/frameworks/av/media/libstagefright/
H A DSkipCutBuffer.cpp107 size_t available = mCapacity - sizeused - 32; local
108 if (available < num) {
109 int32_t newcapacity = mCapacity + (num - available);
135 int32_t available = (mWriteHead - mReadHead); local
136 if (available < 0) available += mCapacity;
138 available -= mBackPadding;
139 if (available <=0) {
142 if (available < int32_t(num)) {
143 num = available;
164 int32_t available = (mWriteHead - mReadHead); local
[all...]
/frameworks/base/core/java/android/speech/srec/
H A DUlawEncoderInputStream.java184 public int available() throws IOException { method in class:UlawEncoderInputStream
185 return (mIn.available() + mBufCount) / 2;
/frameworks/base/core/java/android/util/
H A DBase64InputStream.java92 public int available() { method in class:Base64InputStream
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DFlashlightTile.java31 * still available because it was recently on. */
96 // the camera is not available while it is being used for the flashlight.
128 public void onFlashlightAvailabilityChanged(boolean available) { argument
/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplay.java60 boolean available, boolean canConnect, boolean remembered) {
71 mIsAvailable = available;
93 * The alias should be used in the UI whenever available. It is the value
102 * Returns true if device is available, false otherwise.
124 * Uses the device alias if available, otherwise uses the device name.
59 WifiDisplay(String deviceAddress, String deviceName, String deviceAlias, boolean available, boolean canConnect, boolean remembered) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DZenModeController.java40 public void onZenAvailableChanged(boolean available) {} argument
H A DFlashlightController.java246 private void dispatchAvailabilityChanged(boolean available) { argument
247 dispatchListeners(DISPATCH_AVAILABILITY_CHANGED, available);
364 private void setCameraAvailable(boolean available) {
367 changed = mCameraAvailable != available;
368 mCameraAvailable = available;
371 if (DEBUG) Log.d(TAG, "dispatchAvailabilityChanged(" + available + ")");
372 dispatchAvailabilityChanged(available);
391 * @param available true if the flashlight is currently available.
393 void onFlashlightAvailabilityChanged(boolean available); argument
[all...]
H A DZenModeControllerImpl.java190 private void fireZenAvailableChanged(boolean available) { argument
192 cb.onZenAvailableChanged(available);
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DStorageNotification.java252 void updateUsbMassStorageNotification(boolean available) { argument
254 if (available) {
/frameworks/ex/variablespeed/jni/
H A Dring_buffer.cc61 int RingBuffer::available(int reader) const { function in class:video_editing::RingBuffer
H A Dsola_time_scaler.cc185 // Returns the number of available output frames.
186 int SolaTimeScaler::available() { function in class:video_editing::SolaTimeScaler
189 int available = output_buffer_->available(kOutputConsumer); local
190 if (available > min_output_to_hold_) {
191 available -= min_output_to_hold_;
194 available = output_buffer_->available(kOutputConsumer);
195 if (available > min_output_to_hold_) {
196 available
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_inter_prediction.c58 u32 available; member in struct:__anon604
516 (!a[0].available || !a[1].available ||
526 if (!a[2].available)
601 if (!a[2].available)
639 a[1].available = HANTRO_TRUE;
643 /* c is not available */
708 if (!a[2].available)
742 if (!a[2].available)
750 a[0].available
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java211 public int available() throws IOException { method in class:AssetFileDescriptor.AutoCloseInputStream
214 : super.available();
/frameworks/base/core/java/android/os/
H A DMemoryFile.java268 public int available() throws IOException { method in class:MemoryFile.MemoryInputStream
309 count = Math.min(count, available());
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_legacy_PerfMeasurement.cpp131 * Start a measurement period using the next available query object.
133 * and BAD_VALUE if no more query objects are available.
179 * Get the next available duration measurement.
181 * Returns NO_DURATION_YET if no new measurement is available,
194 GLint available; local
196 GL_QUERY_RESULT_AVAILABLE_EXT, &available);
197 if (!available) {
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DSerializedFrame.java130 public final int available() { method in class:SerializedFrame.DirectByteInputStream
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusionEngine.java75 mStats.get(GPS).available = mLocationManager.isProviderEnabled(GPS);
77 mStats.get(NETWORK).available = mLocationManager.isProviderEnabled(NETWORK);
118 public boolean available; field in class:FusionEngine.ProviderStats
125 s.append(available ? "AVAILABLE" : "UNAVAILABLE");
134 if (stats.available) {
283 stats.available = true;
292 stats.available = false;
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp44 off64_t available = (offset >= (off64_t)mSize) ? 0ll : mSize - offset; local
46 size_t copy = (available > (off64_t)size) ? size : available;
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java58 public int available() throws IOException { method in class:LocalSocketImpl.SocketInputStream
378 * Returns the number of bytes available for reading without blocking.
380 * @return >= 0 count bytes available
383 protected int available() throws IOException method in class:LocalSocketImpl
385 return getInputStream().available();

Completed in 6715 milliseconds

12