HomeSort by relevance Sort by last modified time
    Searched refs:Client (Results 101 - 125 of 151) sorted by null

1 2 3 45 6 7

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
HeapPanel.java 20 import com.android.ddmlib.Client;
214 * Sent when an existing client information changed.
217 * @param client the updated client.
219 * any of the following values: {@link Client#CHANGE_INFO}, {@link Client#CHANGE_NAME}
220 * {@link Client#CHANGE_DEBUGGER_STATUS}, {@link Client#CHANGE_THREAD_MODE},
221 * {@link Client#CHANGE_THREAD_DATA}, {@link Client#CHANGE_HEAP_MODE}
    [all...]
NativeHeapPanel.java 20 import com.android.ddmlib.Client;
154 * current client data. Used to access the malloc info when switching pages
160 * client data from a previous display. used when asking for an "update & diff"
188 * don't keep this list around, it is recomputed everytime the client
510 // client
518 Client client = getCurrentClient();
519 if (client != null) {
520 client.requestNativeHeapInformation();
593 // client
    [all...]
  /external/chromium/chrome/browser/extensions/
extensions_ui.h 65 public PackExtensionJob::Client,
84 // ExtensionPackJob::Client
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 66 client = oauth2.Client(oauth_consumer, oauth_token)
67 resp, content = client.request(url, 'GET')
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestSerialization.java 149 Client client = Network.connectToServer( "localhost", 5110 ); local
150 client.start();
153 client.send(new TestSerializationMessage(true));
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.cpp 62 // Returns true if this message will be handled on a client thread that is currently
185 PassRefPtr<Connection> Connection::createServerConnection(Identifier identifier, Client* client, RunLoop* clientRunLoop)
187 return adoptRef(new Connection(identifier, true, client, clientRunLoop));
190 PassRefPtr<Connection> Connection::createClientConnection(Identifier identifier, Client* client, RunLoop* clientRunLoop)
192 return adoptRef(new Connection(identifier, false, client, clientRunLoop));
195 Connection::Connection(Identifier identifier, bool isServer, Client* client, RunLoop* clientRunLoop)
196 : m_client(client)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePageOverlay.cpp 38 class PageOverlayClientImpl : public PageOverlay::Client {
40 static PassOwnPtr<PageOverlayClientImpl> create(WKBundlePageOverlayClient* client)
42 return adoptPtr(new PageOverlayClientImpl(client));
46 explicit PageOverlayClientImpl(WKBundlePageOverlayClient* client)
49 if (client)
50 m_client = *client;
53 // PageOverlay::Client.
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_service.cc 44 // The default URL prefix where browser fetches MAC client key and reports
49 // When download url check takes this long, client's callback will be called
115 client(NULL),
124 client(NULL),
133 void SafeBrowsingService::Client::OnSafeBrowsingResult(
207 Client* client) {
218 client,
227 Client* client) {
    [all...]
safe_browsing_blocking_page_test.cc 36 // Otherwise it returns false, and "client" is called asynchronously with the
39 virtual bool CheckBrowseUrl(const GURL& gurl, Client* client) {
46 gurl, client));
50 void OnCheckBrowseURLDone(const GURL& gurl, Client* client) {
53 check.client = client;
55 client->OnSafeBrowsingResult(check);
219 public SafeBrowsingService::Client {
    [all...]
client_side_detection_host_unittest.cc 76 ResourceType::Type, UrlCheckResult, Client*, int, int));
79 // Helper function which calls OnBlockingPageComplete for this client
81 void InvokeOnBlockingPageComplete(SafeBrowsingService::Client* client) {
83 DCHECK(client);
84 // Note: this will delete the client object in the case of the CsdClient
86 client->OnBlockingPageComplete(false);
228 // Case 1: client thinks the page is phishing. The server does not agree.
259 // Case 2: client thinks the page is phishing and so does the server but
285 // Case 3: client thinks the page is phishing and so does the server
304 SafeBrowsingService::Client* client; local
382 SafeBrowsingService::Client* client; local
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInstance.h 151 /// - The diagnostics engine should have already been created by the client.
283 "Compiler instance has no diagnostic client!");
472 /// Note that this routine also replaces the diagnostic client,
475 /// \param Client If non-NULL, a diagnostic client that will be
479 /// \param ShouldOwnClient If Client is non-NULL, specifies whether
480 /// the diagnostic object should take ownership of the client.
482 /// \param ShouldCloneClient If Client is non-NULL, specifies whether that
483 /// client should be cloned.
485 DiagnosticConsumer *Client = 0
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 38 DiagnosticConsumer *client, bool ShouldOwnClient)
39 : Diags(diags), Client(client), OwnsDiagClient(ShouldOwnClient),
63 delete Client;
66 void DiagnosticsEngine::setClient(DiagnosticConsumer *client,
68 if (OwnsDiagClient && Client)
69 delete Client;
71 Client = client;
158 /// \brief This allows the client to specify that certai
    [all...]
DiagnosticIDs.cpp 349 /// getDiagnosticLevel - Based on the way the client configured the
364 /// \brief Based on the way the client configured the Diagnostic
627 Diag.Client->IncludeInDiagnosticCounts()) {
635 // If the client doesn't care about this message, don't issue it. If this is
646 if (Diag.Client->IncludeInDiagnosticCounts()) {
661 Diag.Client->HandleDiagnostic((DiagnosticsEngine::Level)DiagLevel, Info);
662 if (Diag.Client->IncludeInDiagnosticCounts()) {
  /external/chromium/chrome/browser/ui/webui/options/
extension_settings_handler.h 67 public PackExtensionJob::Client,
126 // ExtensionPackJob::Client
  /external/clang/include/clang/Basic/
Diagnostic.h 186 DiagnosticConsumer *Client;
331 DiagnosticConsumer *client = 0,
339 DiagnosticConsumer *getClient() { return Client; }
340 const DiagnosticConsumer *getClient() const { return Client; }
342 /// \brief Determine whether this \c DiagnosticsEngine object own its client.
345 /// \brief Return the current diagnostic client along with ownership of that
346 /// client.
349 return Client;
360 // DiagnosticsEngine characterization methods, used by a client to customize
374 /// \brief Set the diagnostic client associated with this diagnostic object
    [all...]
  /frameworks/native/services/surfaceflinger/
LayerScreenshot.cpp 35 const sp<Client>& client)
36 : LayerBaseClient(flinger, display, client),
LayerBase.cpp 479 const sp<Client>& client)
482 mClientRef(client),
489 sp<Client> c(mClientRef.promote());
534 sp<Client> client(mClientRef.promote());
536 " client=%p, identity=%u\n",
537 client.get(), getIdentity());
556 // destroy client resources
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
picasa_client.js 77 * Client constructor.
79 * Client object stores user credentials and gets from and sends to picasa
82 picasa.Client = function() {
86 picasa.Client.prototype = {
125 * Whether client is already authorized.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AndroidLaunchController.java 25 import com.android.ddmlib.Client;
138 private final ArrayList<Client> mUnknownClientsWaitingForDebugger = new ArrayList<Client>();
    [all...]
DeviceChooserDialog.java 21 import com.android.ddmlib.Client;
708 Client[] clients = device.getClients();
710 for (Client client : clients) {
712 if (mPackageName.equals(client.getClientData().getClientDescription())) {
  /external/clang/lib/Frontend/
CompilerInstance.cpp 112 // Chain in a diagnostic client which will log the diagnostics.
140 // Chain in the diagnostic client which will log the diagnostics.
171 DiagnosticConsumer *Client,
174 Diagnostics = createDiagnostics(getDiagnosticOpts(), Argc, Argv, Client,
182 DiagnosticConsumer *Client,
190 // Create the diagnostic client for reporting errors or for
192 if (Client) {
194 Diags->setClient(Client->clone(*Diags), ShouldOwnClient);
196 Diags->setClient(Client, ShouldOwnClient);
636 assert(!getFrontendOpts().ShowHelp && "Client must handle '-help'!")
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeHeapPanel.java 19 import com.android.ddmlib.Client;
169 public void clientChanged(final Client client, int changeMask) {
170 if (client != getCurrentClient()) {
174 if ((changeMask & Client.CHANGE_NATIVE_HEAP_DATA) != Client.CHANGE_NATIVE_HEAP_DATA) {
178 List<NativeAllocationInfo> allocations = client.getClientData().getNativeAllocationList();
194 client.getClientData().getMappedNativeLibraries()));
212 client.getClientData().getMappedNativeLibraries(),
329 Client c = getCurrentClient()
    [all...]
  /sdk/ddms/app/src/com/android/ddms/
UIThread.java 21 import com.android.ddmlib.Client;
107 * when {@link IDevice} / {@link Client} selection changes.
115 * the client list.
144 "Client information", "Thread status", "VM heap status",
177 private Client mCurrentClient = null;
334 public void onEndFailure(final Client client, final String message) {
342 client.getClientData().getClientDescription(),
346 // current selection. as the client is finished dumping an hprof file
354 public void onSuccess(final String remoteFilePath, final Client client)
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
AndroidDebugBridge.java 137 * with {@link Client} changes.
141 * Sent when an existing client information changed.
144 * @param client the updated client.
146 * any of the following values: {@link Client#CHANGE_INFO},
147 * {@link Client#CHANGE_DEBUGGER_STATUS}, {@link Client#CHANGE_THREAD_MODE},
148 * {@link Client#CHANGE_THREAD_DATA}, {@link Client#CHANGE_HEAP_MODE},
149 * {@link Client#CHANGE_HEAP_DATA}, {@link Client#CHANGE_NATIVE_HEAP_DATA
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkGdbLaunchDelegate.java 20 import com.android.ddmlib.Client;
218 for (Client c: device.getClients()) {
245 Client app = device.getClient(manifestData.getPackage());

Completed in 750 milliseconds

1 2 3 45 6 7