HomeSort by relevance Sort by last modified time
    Searched defs:displays (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/webrtc/webrtc/modules/desktop_capture/mac/
desktop_configuration.h 72 // Configurations of the displays making up the desktop area.
73 MacDisplayConfigurations displays; member in struct:webrtc::MacDesktopConfiguration
  /frameworks/base/services/tests/servicestests/src/com/android/server/am/
RunningTasksTest.java 70 final SparseArray<ActivityDisplay> displays = new SparseArray<>(); local
72 displays.put(DEFAULT_DISPLAY, display);
92 displays, -1 /* callingUid */, true /* allowed */);
102 displays, -1 /* callingUid */, true /* allowed */);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DisplayFacade.java 46 private void updateDisplays(Display[] displays) {
51 for(Display d : displays) {
56 @Rpc(description = "Get a list of IDs of the logical displays connected."
57 + "Also updates the cached displays.")
59 Display[] displays = mDisplayManager.getDisplays(); local
60 updateDisplays(displays);
61 Integer[] results = new Integer[displays.length];
62 for(int i = 0; i < displays.length; i++) {
63 results[i] = displays[i].getDisplayId();
  /packages/services/Car/tests/DirectRenderingClusterSample/src/android/car/cluster/sample/
ClusterDisplayProvider.java 112 Display[] displays = displayManager.getDisplays(); local
113 Log.d(TAG, "There are currently " + displays.length + " displays connected.");
115 if (displays.length > 1) {
118 return displays[1];
  /external/swiftshader/src/OpenGL/libGL/
Display.cpp 32 DisplayMap displays; member in namespace:gl
36 if(displays.find(displayId) != displays.end())
38 return displays[displayId];
44 displays[displayId] = display;
58 displays.erase(displayId);
  /frameworks/base/media/java/android/media/
RemoteDisplayState.java 26 * Information available from IRemoteDisplayProvider about available remote displays.
41 * A list of all remote displays.
43 public final ArrayList<RemoteDisplayInfo> displays; field in class:RemoteDisplayState
46 displays = new ArrayList<RemoteDisplayInfo>();
50 displays = src.createTypedArrayList(RemoteDisplayInfo.CREATOR);
54 if (displays == null) {
57 final int count = displays.size();
59 if (!displays.get(i).isValid()) {
73 dest.writeTypedList(displays);
  /frameworks/base/services/core/java/com/android/server/display/
WifiDisplayAdapter.java 48 * Connects to Wifi displays that implement the Miracast protocol.
55 * This class is responsible for connecting to Wifi displays and mediating
70 // Unique id prefix for wifi displays
295 List<WifiDisplay> displays = new ArrayList<WifiDisplay>( local
307 displays.add(new WifiDisplay(d.getDeviceAddress(), d.getDeviceName(),
313 displays.add(new WifiDisplay(d.getDeviceAddress(), d.getDeviceName(),
316 mDisplays = displays.toArray(WifiDisplay.EMPTY_ARRAY);
328 // Consult the list of available displays and update the name if needed.
471 // Check whether any of the available displays changed canConnect status.
WifiDisplayController.java 86 // 4. We don't seem to get updated results for displays we've already found until
469 final WifiDisplay[] displays = WifiDisplay.CREATOR.newArray(count); local
472 displays[i] = createWifiDisplay(device);
479 mListener.onScanResults(displays);
    [all...]
  /cts/tests/tests/display/src/android/display/cts/
DisplayTest.java 147 private Display getSecondaryDisplay(Display[] displays) {
148 for (Display display : displays) {
161 Display[] displays = mDisplayManager.getDisplays(); local
162 assertNotNull(displays);
163 assertTrue(2 <= displays.length);
166 for (Display display : displays) {
  /hardware/interfaces/graphics/composer/2.1/vts/functional/
VtsHalGraphicsComposerV2_1TargetTest.cpp 110 std::vector<Display> displays = mComposerCallback->getDisplays(); local
111 if (displays.empty()) {
116 return displays[0];
153 * Test that virtual displays can be created and has the correct display type.
  /hardware/interfaces/graphics/composer/2.2/vts/functional/
VtsHalGraphicsComposerV2_2TargetTest.cpp 109 std::vector<Display> displays = mComposerCallback->getDisplays(); local
110 if (displays.empty()) {
115 return displays[0];
207 * Test that virtual displays can be created and has the correct display type.
  /external/mesa3d/src/vulkan/wsi/
wsi_common_wayland.c 66 struct hash_table * displays; member in struct:wsi_wayland
314 struct hash_entry *entry = _mesa_hash_table_search(wsi->displays,
328 entry = _mesa_hash_table_search(wsi->displays, wl_display);
333 entry = _mesa_hash_table_insert(wsi->displays, wl_display, display);
804 wsi->displays = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
806 if (!wsi->displays) {
841 hash_table_foreach(wsi->displays, entry)
844 _mesa_hash_table_destroy(wsi->displays, NULL);
  /frameworks/native/libs/gui/
ISurfaceComposer.cpp 78 const Vector<DisplayState>& displays,
89 data.writeUint32(static_cast<uint32_t>(displays.size()));
90 for (const auto& d : displays) {
588 Vector<DisplayState> displays; local
589 displays.setCapacity(count);
594 displays.add(d);
598 setTransactionState(state, displays, stateFlags);
    [all...]
  /frameworks/native/services/surfaceflinger/
SurfaceInterceptor.cpp 44 const DefaultKeyedVector< wp<IBinder>, DisplayDeviceState>& displays)
52 saveExistingDisplaysLocked(displays);
74 const DefaultKeyedVector< wp<IBinder>, DisplayDeviceState>& displays)
76 // Caveat: The initial snapshot does not capture the power mode of the existing displays
78 for (size_t i = 0 ; i < displays.size() ; i++) {
79 addDisplayCreationLocked(createTraceIncrementLocked(), displays[i]); local
80 addInitialDisplayStateLocked(createTraceIncrementLocked(), displays[i]); local
401 const DefaultKeyedVector< wp<IBinder>, DisplayDeviceState>& displays,
411 ssize_t dpyIdx = displays.indexOfKey(disp.token);
413 const DisplayDeviceState& dispState(displays.valueAt(dpyIdx))
532 addTransactionLocked(createTraceIncrementLocked(), stateUpdates, displays, changedDisplays, local
    [all...]
SurfaceFlinger.h 285 // This also allows devices with wide-color displays that don't
314 // force full composition on all displays
377 displays = other.displays;
387 DefaultKeyedVector< wp<IBinder>, DisplayDeviceState> displays; member in class:android::SurfaceFlinger::State
412 const Vector<DisplayState>& displays, uint32_t flags);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationActivity.java 63 * The activity uses the {@link DisplayManager} API to enumerate displays.
67 * We also write information about displays and display-related events to
71 * "Simulate secondary displays" feature in Development Settings to create a few
72 * simulated secondary displays. Each display will appear in the list along with a
136 // Set up checkbox to toggle between showing all displays or only presentation displays.
140 // Set up the list of displays.
151 // Update our list of displays on resume.
251 * Called when the show all displays checkbox is toggled or when
252 * an item in the list of displays is checked or unchecked
444 Display[] displays = mDisplayManager.getDisplays(displayCategory); local
    [all...]
  /external/drm_hwcomposer/
hwcomposer.cpp 195 DisplayMap displays; member in struct:android::hwc_context_t
489 hwc_drm_display_t *hd = &ctx->displays[display];
538 for (std::pair<const int, hwc_drm_display> &display_entry : ctx->displays) {
554 hwc_drm_display_t *hd = &ctx->displays[display];
639 hwc_drm_display_t *hd = &ctx->displays[display];
650 hwc_drm_display_t *hd = &ctx->displays[display];
718 hwc_drm_display_t *hd = &ctx->displays[display];
795 ALOGE("Failed to enumerate displays: %s", strerror(ret));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DeviceStateMonitor.java 533 Display[] displays = dm.getDisplays(); local
535 if (displays != null) {
536 for (Display display : displays) {
548 log("No displays found", true);
  /frameworks/native/libs/vr/libvrflinger/
hardware_composer.cpp 67 // With global shutter displays, this should be changed to the offset to when
337 // vsync/DMA for physical displays.
934 auto displays = composer_callback_->GetDisplays(); local
935 if (displays.external_display_was_hotplugged) {
944 if (displays.external_display) {
947 *displays.external_display, /*is_primary*/ false);
1139 Displays displays; local
    [all...]
  /packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
InstrumentClusterController.java 323 Display[] displays = displayManager.getDisplays(); local
326 Log.d(TAG, "There are currently " + displays.length + " displays connected.");
327 for (Display display : displays) {
332 if (displays.length > 1) {
334 return displays[displays.length - 1];
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
HolidayCalendarDemo.java 102 private static final Locale[] displays = { field in class:HolidayCalendarDemo.CalendarFrame
136 locales = displays;
621 // that displays this month.
  /frameworks/native/services/surfaceflinger/tests/hwc2/
Hwc2Test.cpp 88 /* Destroys virtual displays */
129 /* If the populateDisplays function is still receiving displays and the
4513 std::vector<hwc2_display_t> displays; local
4586 std::vector<hwc2_display_t> displays; local
    [all...]
  /hardware/interfaces/graphics/composer/2.1/utils/hwc2on1adapter/
HWC2On1Adapter.cpp 381 output << "Displays:\n";
2543 std::vector<hwc2_display_t> displays; local
    [all...]
  /hardware/qcom/display/msm8994/libhwcomposer/
HWC2On1Adapter.cpp 426 output << "Displays:\n";
2568 std::vector<hwc2_display_t> displays; local
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvmuxer.cc 1948 Display* const displays = new (std::nothrow) Display[size]; \/\/ NOLINT local
    [all...]

Completed in 779 milliseconds

1 2 3