Searched refs:frame (Results 101 - 114 of 114) sorted by relevance

12345

/frameworks/av/services/camera/libcameraservice/
H A DCameraClient.cpp455 // release a recording frame
681 // invoke methods in the Client class again (For example, the preview frame
789 // preview callback - frame buffer update
803 LOG2("frame callback is disabled");
821 // Is the received frame copied out or not?
823 LOG2("frame is copied");
826 LOG2("frame is forwarded");
927 sp<MemoryBase> frame = new MemoryBase(previewBuffer, 0, size); local
928 if (frame == 0) {
929 ALOGE("failed to allocate space for frame callbac
[all...]
H A DCamera2Device.cpp20 //#define LOG_NNDEBUG 0 // Per-frame verbose logging
104 ALOGE("%s: Camera %d: Unable to connect frame queue to device: %s (%d)",
483 status_t Camera2Device::getNextFrame(CameraMetadata *frame) { argument
491 frame->acquire(rawFrame);
680 ALOGE("%s: Unable to add frame count: %s (%d)",
796 result.appendFormat(" Current frame number: %d\n", mFrameCount);
1195 result.appendFormat(" frame count: %d, last timestamp %lld\n",
1433 result.appendFormat(" frame count: %d\n",
/frameworks/base/core/java/android/widget/
H A DProgressBar.java371 * Each frame of the animation is wrapped in a ClipDrawable and
382 Drawable frame = tileify(background.getFrame(i), true);
383 frame.setLevel(10000);
384 newBg.addFrame(frame, background.getDuration(i));
1246 * are sent at most one in a given time frame to save
H A DAbsListView.java404 * Handles one frame of a fling
711 * view is being scrolled, this method will be called before the next frame of the scroll is
2008 // Reposition the popup when the frame has changed. This includes
2916 Rect frame = mTouchFrame;
2917 if (frame == null) {
2919 frame = mTouchFrame;
2926 child.getHitRect(frame);
2927 if (frame.contains(x, y)) {
3892 * initiate a fling. Each frame of the fling is handled in {@link #run()}.
4058 // Pretend that each frame o
[all...]
/frameworks/av/media/libstagefright/codecs/avc/common/include/
H A Davcint_common.h79 #define MAX_FS (16+1) /* pre-defined size of frame store array */
479 reference frame.
484 uint16 RefIdx; /* index used for reference frame */
493 AVCPictureType picType; /* frame, top-field or bot-field */
511 This structure contains information for frame storage.
518 int IsReference; /* 0=not used for ref; 1=top used; 2=bottom used; 3=both fields (or frame) used */
519 int IsLongTerm; /* 0=not used for ref; 1=top used; 2=bottom used; 3=both fields (or frame) used */
526 AVCPictureData frame; member in struct:tagFrameStore
531 int PicOrderCnt; /* of the frame, smaller of the 2 fields */
541 NOTE:: In order to maintain contiguous memory space, memory equal to a single frame i
[all...]
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.h169 Rect frame; member in struct:android::SurfaceFlinger::DisplayDeviceState
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp832 virtual void setFrame(const Rect& frame) { argument
833 reinterpret_cast<Rect&>(getLayer()->displayFrame) = frame;
934 " type | handle | hints | flags | tr | blend | format | source crop | frame name \n"
/frameworks/rs/
H A DrsContext.cpp151 uint64_t frame = mTimeFrame - mTimeLastFrame; local
152 mTimeMSLastFrame = frame / 1000000;
/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditorImpl.java945 final Rect frame = surfaceHolder.getSurfaceFrame();
947 timeMs, frame.width(), frame.height(), overlayData);
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java8606 public int tileProfilingNumTilesInFrame(int frame) { argument
8607 return nativeTileProfilingNumTilesInFrame(frame);
8610 public int tileProfilingGetInt(int frame, int tile, String key) { argument
8611 return nativeTileProfilingGetInt(frame, tile, key);
8614 public float tileProfilingGetFloat(int frame, int tile, String key) { argument
8615 return nativeTileProfilingGetFloat(frame, tile, key);
8717 private native int nativeTileProfilingNumTilesInFrame(int frame); argument
8718 private native int nativeTileProfilingGetInt(int frame, int tile, String key); argument
8719 private native float nativeTileProfilingGetFloat(int frame, int tile, String key); argument
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java256 public void resized(Rect frame, Rect contentInsets,
635 + ", frame=" + mWinFrame);
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp391 s.frame = displayRect;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java3000 + "\nRelayout returning frame=" + outFrame
3170 info.frame.set(window.mFrame);
5751 final Rect frame = new Rect();
5820 frame.union(left, top, right, bottom);
5825 // Constrain frame to the screen size.
5826 frame.intersect(0, 0, dw, dh);
5828 if (frame.isEmpty() || maxLayer == 0) {
5834 int fw = frame.width();
5835 int fh = frame.height();
5887 matrix.postTranslate(-FloatMath.ceil(frame
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java651 outBounds.set(info.frame);

Completed in 332 milliseconds

12345