HomeSort by relevance Sort by last modified time
    Searched full:guest (Results 1 - 25 of 768) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/webui/resources/css/chromeos/
ui_account_tweaks.css 7 * look and feel based on account status (owner/non-owner/guest).
10 .guest-disabled {
14 a.guest-disabled {
  /external/chromium_org/extensions/browser/guest_view/extension_options/
extension_options_guest_delegate.cc 10 ExtensionOptionsGuest* guest)
11 : guest_(guest) {
  /external/qemu/android/
adb-server.h 22 * connections and data to ADB daemon running inside the guest.
25 /* Callback to be invoked wheh host ADB gets connected with the guest ADB.
27 * opaque - An opaque pointer associated with the guest. This pointer contains
31 * the guest ADBs. This pointer must be used for further operations on the
32 * host <-> guest connection.
36 /* Callback to be invoked wheh the host ADB sends data to the guest ADB.
38 * opaque - An opaque pointer associated with the guest. This pointer contains
42 * the guest ADB. This pointer must be used for further operations on the
43 * host <-> guest connection.
53 * opaque - An opaque pointer associated with the guest. This pointer contain
    [all...]
adb-qemud.c 36 /* Maximum length of the message that can be received from the guest. */
43 * in the guest. */
45 /* Connection between ADB host and ADB guest is fully established. */
49 /* ADB guest has been disconnected. */
96 /* Notify the ADB guest that host has been connected.This will unblock
97 * the guest from a 'read', then guest will register the transport, and
135 /* Dispatch data down to the guest. */
143 /* ADB guest API required for adb_server_register_guest */
154 * ADB guest communication
    [all...]
  /external/chromium_org/extensions/browser/guest_view/
guest_view.h 25 GuestViewBase* guest = local
27 if (!guest)
29 return guest->As<T>();
33 GuestViewBase* guest = GuestViewBase::FromWebContents(contents); local
34 return guest ? guest->As<T>() : NULL;
49 GuestViewBase* guest = GuestViewBase::GetOpener(); local
50 if (!guest)
52 return guest->As<T>();
  /external/valgrind/main/lackey/tests/
true.stderr.exp 12 guest instrs: ...
16 guest instrs : SB entered = ... : ...
18 IRStmts : guest instr = ... : ...
  /external/chromium_org/content/browser/browser_plugin/
browser_plugin_embedder.h 6 // embedder that are not directed at any particular existing guest process.
12 // guest.
60 void DragEnteredGuest(BrowserPluginGuest* guest);
62 void DragLeftGuest(BrowserPluginGuest* guest);
64 void StartDrag(BrowserPluginGuest* guest);
66 // Sends EndSystemDrag message to the guest that initiated the last drag/drop
84 bool UnlockMouseIfNecessaryCallback(bool* mouse_unlocked, WebContents* guest);
93 // Used to correctly update the cursor when dragging over a guest, and to
94 // handle a race condition when dropping onto the guest that started the drag
100 // Pointer to the guest that started the drag, used to forward necessary dra
    [all...]
browser_plugin_embedder.cc 44 void BrowserPluginEmbedder::DragEnteredGuest(BrowserPluginGuest* guest) {
45 guest_dragging_over_ = guest->AsWeakPtr();
48 void BrowserPluginEmbedder::DragLeftGuest(BrowserPluginGuest* guest) {
50 // only un-setting if the caller is marked as the guest being dragged over.
51 if (guest_dragging_over_.get() == guest) {
56 void BrowserPluginEmbedder::StartDrag(BrowserPluginGuest* guest) {
57 guest_started_drag_ = guest->AsWeakPtr();
123 // to the guest that initiated the drag/drop operation. This will ensure that
124 // the guest's RVH state is reset properly.
143 BrowserPluginGuest* guest = static_cast<WebContentsImpl*>(guest_web_contents
    [all...]
browser_plugin_guest.h 10 // messages about the guest render process that the embedder might be interested
13 // BrowserPluginGuest is a WebContentsObserver for the guest WebContents.
14 // BrowserPluginGuest operates under the assumption that the guest will be
16 // the guest WebContents. Thus, cross-process navigation is not supported.
70 // A browser plugin guest provides functionality for WebContents to operate in
71 // the guest role and implements guest-specific overrides for ViewHostMsg_*
74 // When a guest is initially created, it is in an unattached state. That is,
77 // A BrowserPluginGuest can also create a new unattached guest via
78 // CreateNewWindow. The newly created guest will live in the same partition
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/
perf-kvm.txt 6 perf-kvm - Tool to trace/measure kvm guest os
11 'perf kvm' [--host] [--guest] [--guestmount=<path>
14 'perf kvm' [--host] [--guest] [--guestkallsyms=<path> --guestmodules=<path>
23 a performance counter profile of guest os in realtime
28 --host and --guest are input, the perf data file name is perf.data.kvm.
29 If there is no --host but --guest, the file name is perf.data.guest.
30 If there is no --guest but --host, the file name is perf.data.host.
68 --guest=::
69 Collect guest side performance profile
    [all...]
  /external/chromium_org/extensions/browser/api/web_view/
web_view_internal_api.cc 54 WebViewGuest* guest = WebViewGuest::From( local
56 if (!guest)
59 return RunAsyncSafe(guest);
62 bool WebViewInternalNavigateFunction::RunAsyncSafe(WebViewGuest* guest) {
67 guest->NavigateGuest(src);
117 WebViewGuest* guest = WebViewGuest::From( local
119 if (!guest)
122 return guest->script_executor();
167 WebViewGuest* guest = WebViewGuest::From( local
169 return guest ? guest->web_contents() : NULL
    [all...]
web_view_internal_api.h 33 virtual bool RunAsyncSafe(WebViewGuest* guest) = 0;
48 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE;
148 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE;
165 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE;
181 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE;
197 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE;
216 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE;
234 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE;
250 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE;
266 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE
    [all...]
  /external/chromium_org/content/public/browser/
browser_plugin_guest_manager.h 15 // A BrowserPluginGuestManager offloads guest management and routing
21 // Requests a guest WebContents associated with the provided
23 // Returns the guest associated with the provided ID if one exists.
speech_recognition_session_context.h 31 // Browser plugin guest's render view id, if this context represents a speech
32 // recognition request from an embedder on behalf of the guest. This is used
35 // TODO(lazyboy): Right now showing bubble from guest does not work, we fall
42 // represents a Browser plugin guest's embedder. This is filled in if the
43 // session is from a guest Web Speech API. We use these to check if the
browser_plugin_guest_delegate.h 23 // Objects implement this interface to get notified about changes in the guest
31 // the element that will serve as a container for the guest.
40 // embedder that will serve as a contentWindow proxy for the guest.
47 // Notifies that the content size of the guest has changed.
48 // Note: In autosize mode, it si possible that the guest size may not match
53 // Asks the delegate if the given guest can lock the pointer.
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
Android.mk 2 # common to both the guest and the host. They relate to
14 ### CodecCommon guest ##############################################
  /external/chromium_org/chrome/browser/chromeos/login/
signin_specifics.h 18 // Specifies url that should be shown during Guest signin.
21 // Specifies if locale should be passed to guest mode url.
  /external/chromium_org/chrome/browser/resources/user_manager/
control_bar.html 2 <div id="guest-user-header-bar-item" class="header-bar-item">
3 <button id="guest-user-button" i18n-content="browseAsGuest"></button>
  /external/qemu/target-i386/
hax-darwin.h 49 * Allocate guest memory, the step of allocate guest memory is:
50 * 1. QEMU will allocate the virtual address to cover the guest memory ranges
59 * Setup translation between guest physical address and host physical address
70 /* Run the guest in non-root mode */
72 /* Sync QEMU's guest MSR value to HAX driver */
74 /* Sync HAX driver's guest MSR value to QEMU */
81 /* A interrupt need to be injected into guest */
  /external/chromium_org/extensions/common/api/
mime_handler_view_guest_internal.json 8 "description": "Placeholder for mime handler view guest API, currently unused."
  /external/wpa_supplicant_8/hostapd/
hostapd.vlan 5 100 guest
  /external/chromium_org/extensions/browser/api/guest_view/
guest_view_internal_api.cc 39 error_ = "Guest views can only be embedded in web content";
42 // If the guest is an <extensionoptions> to be embedded in a WebUI, then
61 GuestViewBase* guest = GuestViewBase::FromWebContents(guest_web_contents); local
62 guest_instance_id = guest->guest_instance_id();
80 GuestViewBase* guest = GuestViewBase::From( local
82 if (!guest)
84 guest->SetAutoSize(params->params.enable_auto_size,
  /external/qemu/docs/
ANDROID-ADB-QEMU.TXT 7 For instance, connection manager in the guest system may decide to reset all
9 daemon running in the guest will be broken, and will not be reestablish until ADB
12 ADB daemon running in the guest.
29 accepting connections coming from the ADB daemon running in the guest, and
33 the host, and ADB running on the guest: ADB server receives data from ADB host,
34 and channels them through ADB client to the ADB guest. Likewise, ADB client
35 receives data from the ADB guest, and channels them through ADB server to the ADB
42 The connection between ADB host and ADB guest is considered to be established,
44 QEMUD pipe connection in the ADB client, and ADB guest is ready to receive data
48 connections are made, ADB server runs a list of pending host and guest
    [all...]
  /external/chromium_org/content/common/browser_plugin/
browser_plugin_messages.h 40 // The new size of guest view.
99 // has taken ownership of the lifetime of the guest of the given
101 // taking ownership of the guest.
106 // Tells the guest to focus or defocus itself.
111 // Sends an input event to the guest.
122 // Notify the guest renderer that some resources given to the embededer
129 // the browser process to cleanup the guest.
133 // Tells the guest it has been shown or hidden.
138 // Tells the guest that a drag event happened on the plugin.
161 // These messages are from the guest renderer to the browser proces
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
ui_account_tweaks.h 21 * owner/guest, id of the owner).
29 * owner/guest, id of the owner).

Completed in 748 milliseconds

1 2 3 4 5 6 7 8 91011>>