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

12

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
H A DBitmapCaller.java22 public void available(Bitmap bmap); method in interface:BitmapCaller
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DRenderingRequestCaller.java20 public void available(RenderingRequest request); method in interface:RenderingRequestCaller
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/
H A DFixedLengthInputStream.java37 public int available() throws IOException { method in class:FixedLengthInputStream
/packages/apps/Email/provider_src/com/android/email/
H A DFixedLengthInputStream.java38 public int available() throws IOException { method in class:FixedLengthInputStream
/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
H A DPlaybackBufferListener.java32 * @param available whether the buffer is available or not
34 void onBufferStateChanged(boolean available); argument
H A DTunerRecordingSessionWorker.java172 public void onBufferStateChanged(boolean available) {} argument
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DProxyInputStream.java89 * Invokes the delegate's <code>available()</code> method.
90 * @return the number of available bytes
93 public int available() throws IOException { method in class:ProxyInputStream
94 return in.available();
H A DNullInputStream.java123 public int available() { method in class:NullInputStream
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
H A DCloseShieldInputStream.java56 * @see java.io.InputStream#available()
58 public int available() throws IOException { method in class:CloseShieldInputStream
60 return is.available();
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
H A DPartialInputStream.java35 public int available() throws IOException { method in class:PartialInputStream
36 return Math.min(super.available(), getBytesLeft());
H A DPositionInputStream.java40 public int available() throws IOException { method in class:PositionInputStream
41 return inputStream.available();
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
H A DCachedInputStream.java205 public int available() throws IOException { method in class:CachedInputStream
209 return mCount - mPos + in.available();
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
H A DJPEGInputStream.java70 public int available() { method in class:JPEGInputStream
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
H A DVolumeSeekBarPreferenceControllerTest.java154 VolumeSeekBarPreference.Callback callback, boolean available, String key) {
157 mAvailable = available;
153 VolumeSeekBarPreferenceControllerTestable(Context context, VolumeSeekBarPreference.Callback callback, boolean available, String key) argument
/packages/apps/Car/Hvac/src/com/android/car/hvac/
H A DDataStore.java84 public void setTemperature(int zone, float temperature, boolean available) { argument
89 mTemperatureAvailable.put(zone, available);
95 public boolean shouldPropagateTempUpdate(int zone, float temperature, boolean available) { argument
99 if (available == mTemperatureAvailable.get(zone)) {
104 setTemperature(zone, temperature, available);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
H A DAction.java179 public void available(RenderingRequest request) { method in class:Action
/packages/apps/Settings/src/com/android/settings/
H A DTetherSettings.java197 ArrayList<String> available = intent.getStringArrayListExtra(
203 updateState(available.toArray(new String[available.size()]),
291 String[] available = mCm.getTetherableIfaces();
294 updateState(available, tethered, errored);
297 private void updateState(String[] available, String[] tethered, argument
299 updateUsbState(available, tethered, errored);
303 private void updateUsbState(String[] available, String[] tethered, argument
307 for (String s : available) {
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
H A DSimpleCharStream.java28 int available; field in class:SimpleCharStream
97 available = bufsize;
103 if (maxNextCharInd == available)
105 if (available == bufsize)
110 available = tokenBegin;
117 else if (available > tokenBegin)
118 available = bufsize;
119 else if ((tokenBegin - available) < 2048)
122 available = tokenBegin;
128 available
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
H A DSimpleCharStream.java28 int available; field in class:SimpleCharStream
97 available = bufsize;
103 if (maxNextCharInd == available)
105 if (available == bufsize)
110 available = tokenBegin;
117 else if (available > tokenBegin)
118 available = bufsize;
119 else if ((tokenBegin - available) < 2048)
122 available = tokenBegin;
128 available
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
H A DSimpleCharStream.java28 int available; field in class:SimpleCharStream
97 available = bufsize;
103 if (maxNextCharInd == available)
105 if (available == bufsize)
110 available = tokenBegin;
117 else if (available > tokenBegin)
118 available = bufsize;
119 else if ((tokenBegin - available) < 2048)
122 available = tokenBegin;
128 available
[all...]
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
H A DBluetoothAutoConnectPolicyTest.java249 * @param available - result to return when a connection is requested
251 private void mockDeviceAvailability(@Nullable BluetoothDevice device, boolean available) argument
255 Mockito.doAnswer(createDeviceAvailabilityAnswer(available)).when(
262 private Answer<Void> createDeviceAvailabilityAnswer(final boolean available) { argument
280 available));
592 * Mock all devices to be available for connection - connection requests are successful
594 * Secondary device should not have connected on A2DP (since Primary is available)
597 * Secondary device should now be connected on A2DP (since Primary is not available)
629 // 2. Device1 is the first device in the order and it's available for connection
695 // Now bring device2 in range (mock it to be available)
[all...]
/packages/apps/Car/Hvac/src/com/android/car/hvac/ui/
H A DTemperatureBarOverlay.java310 Log.d("HvacTempBar", "setting temperature not available");
336 public void setAvailable(boolean available) { argument
337 Log.d("HvacTempBar", "setAvailable(" + available + ")");
338 setIsOn(available);
/packages/apps/TV/tuner/tests/unittests/javatests/com/android/tv/tuner/
H A DZappingTimeTest.java377 public void onBufferStateChanged(boolean available) { argument
/packages/apps/TV/src/com/android/tv/
H A DTimeShiftManager.java199 /** Checks if the trick play is available for the current channel. */
233 * @throws IllegalStateException if the trick play is not available.
248 * @throws IllegalStateException if the trick play is not available.
263 * @throws IllegalStateException if the trick play is not available.
274 * @throws IllegalStateException if the trick play is not available.
291 * @throws IllegalStateException if the trick play is not available.
309 * @throws IllegalStateException if the trick play is not available.
335 * @throws IllegalStateException if the trick play is not available.
449 SoftPreconditions.checkState(isAvailable(), TAG, "Time shift is not available");
470 * Returns {@code true} if the trick play is available an
879 onAvailabilityChanged(boolean available, Channel channel, long currentPositionMs) argument
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DMainKeyboardView.java763 public void updateShortcutKey(final boolean available) { argument
772 shortcutKey.setEnabled(available);

Completed in 399 milliseconds

12