/external/qemu/include/hw/android/goldfish/ |
pipe.h | 21 * A goldfish pipe is a very fast communication channel between the guest 24 * To open a new pipe to the emulator, a guest client will do the following: 71 /* Called when the guest kernel has finally closed a pipe connection. 78 /* Called when the guest is write()-ing to the pipe. Should return the 85 /* Same as sendBuffers when the guest is read()-ing from the pipe. */ 88 /* Called when guest wants to poll the read/write status for the pipe. 93 /* Called to signal that the guest wants to be woken when the set of 102 * force-close so the next operation the guest performs on it will return 128 /* This tells the guest system that we want to close the pipe and that 132 * This will also wake-up any blocked guest threads waiting for i/o [all...] |
/external/chromium_org/chrome/browser/extensions/api/ |
chrome_extensions_api_client.h | 28 ExtensionOptionsGuest* guest) const OVERRIDE; 31 MimeHandlerViewGuest* guest) const OVERRIDE;
|
/external/chromium_org/chrome/browser/guest_view/extension_options/ |
chrome_extension_options_guest_delegate.cc | 17 ExtensionOptionsGuest* guest) 18 : ExtensionOptionsGuestDelegate(guest) {
|
/external/chromium_org/chromeos/login/ |
user_names.h | 27 // Username for Guest session user. 36 // Canonicalizes a GAIA user ID, accounting for the legacy guest mode user ID
|
user_names.cc | 17 const char* kGuestUserName = "$guest";
|
/external/chromium_org/extensions/browser/api/ |
extensions_api_client.cc | 37 ExtensionOptionsGuest* guest) const { 43 MimeHandlerViewGuest* guest) const {
|
/sdk/emulator/opengl/ |
README | 2 emulation. The guest-side modules are in 9 EGL/GLES command stream used between the guest and the host during emulation. 21 guest, and implement the marshalling of EGL/GLES commands into a stream of 27 system/egl -> emulator-specific guest EGL library 28 system/GLESv1 -> emulator-specific guest GLES 1.1 library 66 tests/gles_android_wrapper -> guest EGL / GLES libraries that are run on 74 tests/ut_rendercontrol_enc -> guest library used by tests/ut_renderer 84 non-trivial placement for guest/device libraries.
|
/external/chromium_org/chrome/browser/chromeos/login/screens/ |
error_screen.cc | 68 // The only condition leading here is guest mount failure, which should not 71 NOTREACHED() << "Guest login failed."; 80 // Restart Chrome to enter the guest session. 152 // Make sure to disallow guest login if it's explicitly disabled. 163 // Only allow guest sessions if there is no owner yet.
|
/external/chromium_org/content/renderer/browser_plugin/ |
browser_plugin.h | 52 // Returns whether the guest process has crashed. 55 // Informs the guest of an updated focus state. 58 // Indicates whether the guest should be focused. 61 // Embedder's device scale factor changed, we need to update the guest 68 // Provided that a guest instance ID has been allocated, this method attaches 69 // this BrowserPlugin instance to that guest. 148 // does an initial navigation or is attached to a newly created guest, it 149 // acquires a browser_plugin_instance_id as well. The guest instance ID 150 // uniquely identifies a guest WebContents that's hosted by this 222 // Indicates whether the guest content is opaque [all...] |
/external/qemu/docs/ |
ANDROID-QEMU-PIPE.TXT | 8 _very_ fast communication channels between the guest system and the 11 From the guest, usage is simply as follows: 53 that will be accessible as /dev/qemu_pipe within the guest. 70 Each opened file descriptor to /dev/qemu_pipe in the guest corresponds to a 80 which is either 32-bit or 64-bit, depending on the guest CPU 103 Used by the driver to indicate that the guest just opened /dev/qemu_pipe 113 Used by the driver to indicate that the guest called 'close' on the 121 Corresponds to when the guest does a write() or writev() on the 132 NOTE: The <buffer-address> is the *GUEST* buffer address, not the 136 contained inside a single page of guest memory. This i [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/ |
svga_reg.h | 43 * cursor bypass mode. This is still supported, but no new guest 114 SVGA_REG_BITS_PER_PIXEL = 7, /* Current bpp in the guest */ 133 SVGA_REG_GUEST_ID = 23, /* Set guest OS identifier */ 146 SVGA_REG_NUM_GUEST_DISPLAYS = 34,/* Number of guest displays in X/Y direction */ 154 /* See "Guest memory regions" below. */ 175 * Guest memory regions (GMRs): 186 * Since GMR mapping must be done synchronously with guest CPU 212 * The guest driver should write SVGA_REG_GMR_ID first, then 244 * can describe at least 2MB of guest memory. If the driver needs to 261 * allow legacy memory regions to be redefined by the guest as GMRs [all...] |
/external/mesa3d/src/gallium/drivers/svga/include/ |
svga_reg.h | 43 * cursor bypass mode. This is still supported, but no new guest 114 SVGA_REG_BITS_PER_PIXEL = 7, /* Current bpp in the guest */ 133 SVGA_REG_GUEST_ID = 23, /* Set guest OS identifier */ 146 SVGA_REG_NUM_GUEST_DISPLAYS = 34,/* Number of guest displays in X/Y direction */ 154 /* See "Guest memory regions" below. */ 175 * Guest memory regions (GMRs): 186 * Since GMR mapping must be done synchronously with guest CPU 212 * The guest driver should write SVGA_REG_GMR_ID first, then 244 * can describe at least 2MB of guest memory. If the driver needs to 261 * allow legacy memory regions to be redefined by the guest as GMRs [all...] |
/external/chromium_org/chrome/common/extensions/api/ |
webview_tag.json | 60 "description": "Messaging handle to a guest window.", 64 "description": "<p>Posts a message to the embedded web content as long as the embedded content is displaying a page from the target origin. This method is available once the page has completed loading. Listen for the <a href=\"#event-contentload\">contentload</a> event and then call the method.</p><p>The guest will be able to send replies to the embedder by posting message to <code>event.source</code> on the message event it receives.</p><p>This API is identical to the <a href=\"https://developer.mozilla.org/en-US/docs/DOM/window.postMessage\">HTML5 postMessage API</a> for communication between web pages. The embedder may listen for replies by adding a <code>message</code> event listener to its own frame.</p>", 69 "description": "Message object to send to the guest." 74 "description": "Specifies what the origin of the guest window must be for the event to be dispatched." 93 "description": "The response string to provide to the guest when accepting a <code>prompt</code> dialog." 298 "description": "Interface which provides access to webRequest events on the guest page. See the <a href=\"http://developer.chrome.com/extensions/webRequest\">chrome.webRequest</a> extensions API for details on webRequest life cycle and related concepts.<p>To illustrate how usage differs from the extensions webRequest API, consider the following example code which blocks any guest requests for URLs which match <code>*://www.evil.com/*</code>:</p><pre>webview.request.onBeforeRequest.addListener(\r function(details) { return {cancel: true}; },\r {urls: [\"*://www.evil.com/*\"]},\r [\"blocking\"]);</pre><p>Additionally, this interface supports declarative webRequest rules through <code>onRequest</code> and <code>onMessage</code> events. See <a href=\"http://developer.chrome.com/extensions/declarativeWebRequest.html\">declarativeWebRequest</a> for API details.</p>Note that conditions and actions for declarative webview webRequests should be instantiated from their <code>chrome.webViewRequest.*</code> counterparts. The following example code declaratively blocks all requests to <code>\"example.com\"</code> on the webview <code>myWebview</code>:</p><pre>var rule = {\r conditions: [\r new chrome.webViewRequest.RequestMatcher({ url: { hostSuffix: 'example.com' } })\r ],\r actions: [ new chrome.webViewRequest.CancelRequest() ]\r};\rmyWebview.request.onRequest.addRules([rule]);</pre>", 347 "description": "<p>Injects JavaScript code into the guest page.</p><p>The following sample code uses script injection to set the guest page's background color to red:</p><pre>webview.executeScript({ code: \"document.body.style.backgroundColor = 'red'\" });</pre>", 413 "description": "Returns Chrome's internal process ID for the guest web page's current process, allowing embedders to know how many guests would be affected by termin (…) [all...] |
/external/chromium_org/chrome/browser/resources/extensions/ |
extension_options_overlay.js | 51 $('extension-options-overlay-guest') 55 $('extension-options-overlay-guest').removeChild(extensionoptions); 130 $('extension-options-overlay-guest').style.position = 'static'; 131 $('extension-options-overlay-guest').style.left = 'auto'; 140 $('extension-options-overlay-guest').style.position = 'fixed'; 141 $('extension-options-overlay-guest').style.left = 144 $('extension-options-overlay-guest').appendChild(extensionoptions);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/ |
virtio_net.h | 12 #define VIRTIO_NET_F_GUEST_CSUM 1 /* Guest handles pkts w/ partial csum */ 15 #define VIRTIO_NET_F_GUEST_TSO4 7 /* Guest can handle TSOv4 in. */ 16 #define VIRTIO_NET_F_GUEST_TSO6 8 /* Guest can handle TSOv6 in. */ 17 #define VIRTIO_NET_F_GUEST_ECN 9 /* Guest can handle TSO[6] w/ ECN in. */ 18 #define VIRTIO_NET_F_GUEST_UFO 10 /* Guest can handle UFO in. */ 98 * The MAC filter table is managed by the hypervisor, the guest should 100 * non-perfect, ie. based on hypervisor resources, the guest may
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
virtio_net.h | 12 #define VIRTIO_NET_F_GUEST_CSUM 1 /* Guest handles pkts w/ partial csum */ 15 #define VIRTIO_NET_F_GUEST_TSO4 7 /* Guest can handle TSOv4 in. */ 16 #define VIRTIO_NET_F_GUEST_TSO6 8 /* Guest can handle TSOv6 in. */ 17 #define VIRTIO_NET_F_GUEST_ECN 9 /* Guest can handle TSO[6] w/ ECN in. */ 18 #define VIRTIO_NET_F_GUEST_UFO 10 /* Guest can handle UFO in. */ 98 * The MAC filter table is managed by the hypervisor, the guest should 100 * non-perfect, ie. based on hypervisor resources, the guest may
|
/external/chromium_org/extensions/browser/guest_view/web_view/ |
javascript_dialog_helper.cc | 36 JavaScriptDialogHelper::JavaScriptDialogHelper(WebViewGuest* guest) 37 : web_view_guest_(guest) { 78 // This is called if the guest has a beforeunload event handler.
|
web_view_guest.cc | 152 // Since guest URLs are only used for packaged apps, there must be an app 171 WebViewGuest* guest = FromWebContents(contents); local 172 if (!guest) 175 return guest->view_instance_id(); 214 // a guest process in addition to which platform application or which WebUI 258 // If the guest window's name is empty, then the WebView tag's name is 259 // assigned. Otherwise, the guest window's name takes precedence over the 293 // Once a new guest is attached to the DOM of the embedder page, then the 294 // lifetime of the new guest is no longer managed by the opener guest 1054 WebViewGuest* guest = WebViewGuest::FromWebContents(new_contents); local 1083 WebViewGuest* guest = WebViewGuest::FromWebContents(new_contents); local 1149 WebViewGuest* guest = local [all...] |
/external/chromium_org/ash/system/user/ |
login_status.h | 18 LOGGED_IN_GUEST, // A guest is logged in (i.e. incognito)
|
/external/chromium_org/chrome/browser/guest_view/web_view/ |
context_menu_content_type_web_view.h | 10 // A ContextMenuContentType for <webview> guest.
|
/external/chromium_org/chrome/browser/profiles/ |
profile_window.h | 63 // Opens a Browser for the guest profile and runs |callback| if it isn't null. 74 // Closes all browser windows that belong to the guest profile. 80 // Creates or reuses the guest profile needed by the user manager. Based on 86 // as well as a pointer to the guest profile.
|
/external/chromium_org/chrome/browser/task_manager/ |
guest_information.cc | 62 return GUEST; 71 extensions::GuestViewBase* guest = local 74 guest->GetTaskPrefix(), 100 // Guest WebContentses are created and owned internally by the content layer.
|
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/ |
guest_mode_options_ui_browsertest.cc | 14 // Same as OptionsUIBrowserTest but launches with Guest mode command line
|
/external/chromium_org/components/user_manager/ |
user_type.h | 14 // Guest user, logs in without authentication.
|
/external/chromium_org/content/browser/browser_plugin/ |
browser_plugin_message_filter.h | 16 // This class filters out incoming IPC messages for the guest renderer process
|