Searched refs:capture (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DDataController.java54 private ByteBuffer mBuffer; // to capture thumbnails
198 Bitmap capture = tab.getScreenshot();
199 if (capture == null) {
202 if (mBuffer == null || mBuffer.limit() < capture.getByteCount()) {
203 mBuffer = ByteBuffer.allocate(capture.getByteCount());
205 capture.copyPixelsToBuffer(mBuffer);
H A DPieControlPhone.java100 mUi.getActiveTab().capture();
H A DPieControlXLarge.java123 mUi.getActiveTab().capture();
H A DTab.java1464 capture();
1747 capture();
2093 protected void capture() { method in class:Tab
2191 Log.e(LOGTAG, "Load capture has mismatched sizes; buffer: "
2193 + "capture: " + mCapture.getByteCount());
H A DPhoneUi.java330 mActiveTab.capture();
/packages/apps/Camera/src/com/android/camera/
H A DFocusManager.java80 public boolean capture(); method in interface:FocusManager.Listener
184 capture();
187 // already have requested AF for us, so just request capture on
195 capture();
215 capture();
343 private void capture() { method in class:FocusManager
344 if (mListener.capture()) {
H A DCamera.java372 if (!mIsImageCaptureIntent) { // no thumbnail in image capture intent
1040 public boolean capture() { method in class:Camera
1612 // If we are in an image capture intent and has taken
2218 // If the intent is camera capture, stay in camera capture mode.
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DParser.java54 private boolean capture = false; field in class:Parser
203 * Turns on data capture; this is used to create test streams that represent "live" data and
207 capture = true;
212 * Turns off data capture; writes the captured data to a specified file.
514 * Read an int from the input stream, and capture it if necessary for debugging. Seems a small
523 if (capture) {

Completed in 2565 milliseconds