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

1 2

  /external/webkit/Source/WebKit2/UIProcess/Launcher/
ThreadLauncher.h 42 class Client {
44 virtual ~Client() { }
48 static PassRefPtr<ThreadLauncher> create(Client* client)
50 return adoptRef(new ThreadLauncher(client));
58 explicit ThreadLauncher(Client*);
66 Client* m_client;
ProcessLauncher.h 42 class Client {
44 virtual ~Client() { }
63 static PassRefPtr<ProcessLauncher> create(Client* client, const LaunchOptions& launchOptions)
65 return adoptRef(new ProcessLauncher(client, launchOptions));
77 ProcessLauncher(Client*, const LaunchOptions& launchOptions);
86 Client* m_client;
  /external/webkit/Source/WebKit2/UIProcess/
ResponsivenessTimer.h 35 class Client {
37 virtual ~Client() { }
42 ResponsivenessTimer(ResponsivenessTimer::Client*);
55 ResponsivenessTimer::Client* m_client;
WebPopupMenuProxy.h 46 class Client {
48 virtual ~Client()
68 WebPopupMenuProxy(Client* client)
69 : m_client(client)
73 Client* m_client;
  /external/chromium/chrome/browser/extensions/
pack_extension_job.h 23 class Client {
30 virtual ~Client() {}
33 PackExtensionJob(Client* client,
40 // The client should call this when it is destroyed to prevent
61 Client* client_;
  /external/webkit/Source/WebKit2/Shared/mac/
CoreAnimationRenderer.h 42 class Client {
44 virtual ~Client() { }
48 static PassRefPtr<CoreAnimationRenderer> create(Client*, CGLContextObj, CALayer *);
57 CoreAnimationRenderer(Client*, CGLContextObj, CALayer *);
62 Client* m_client;
  /device/sample/apps/client/src/com/example/android/platform_library/client/
Client.java 17 package com.example.android.platform_library.client;
28 public class Client extends Activity {
  /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.
  /external/chromium/chrome/browser/
utility_process_host.h 37 class Client : public base::RefCountedThreadSafe<Client> {
39 Client() {}
107 friend class base::RefCountedThreadSafe<Client>;
109 virtual ~Client() {}
116 DISALLOW_COPY_AND_ASSIGN(Client);
119 UtilityProcessHost(Client* client, BrowserThread::ID client_thread_id);
158 // to the client via OnJSONParseSucceeded or OnJSONParseFailed.
184 // A pointer to our client interface, who will be informed of progress
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
PageOverlay.h 45 class Client {
47 virtual ~Client() { }
59 static PassRefPtr<PageOverlay> create(Client*);
75 explicit PageOverlay(Client*);
86 Client* m_client;
  /external/clang/include/clang/Rewrite/
FixItRewriter.h 1 //===--- FixItRewriter.h - Fix-It Rewriter Diagnostic Client ----*- C++ -*-===//
10 // This is a diagnostic client adaptor that performs rewrites as
12 // then forwards any diagnostics to the adapted diagnostic client.
47 /// \brief The diagnostic client that performs the actual formatting
49 DiagnosticConsumer *Client;
98 /// \brief Emit a diagnostic via the adapted diagnostic client.
  /frameworks/base/include/media/stagefright/
MediaSourceSplitter.h 24 // - Create a client using createClient() and use it as any other mediaSource.
30 // If a new client is created/started after some existing clients have already
31 // started, the new client will start getting its read frames from the current
57 // Creates a new client of base type MediaSource. Multiple clients can be
81 // List of booleans, one for each client, storing whether the corresponding
82 // client's start() has been called.
93 // for each client. This bit flips each time read() is completed for this
94 // client.
112 // Condition variable for waiting on all client's last read to complete.
115 // Functions used by Client to implement the MediaSource interface
    [all...]
  /frameworks/base/media/libstagefright/
MediaSourceSplitter.cpp 45 sp<MediaSource> client = new Client(this, mNumberOfClients++); local
48 return client;
54 LOGV("start client (%d)", clientId);
62 LOGV("Starting real source from client (%d)", clientId);
88 LOGV("stop client (%d)", clientId);
93 LOGV("Stopping real source from client (%d)", clientId);
104 // client would have wanted to read from this buffer. (i.e. it has not yet
117 LOGV("getFormat client (%d)", clientId);
127 LOGV("read client (%d)", clientId)
    [all...]
  /external/qemu/telephony/
simulator.c 31 } ClientRec, *Client;
33 static Client
36 Client client = calloc( sizeof(*client), 1 ); local
38 client->channel = channel;
39 return client;
43 client_free( Client client )
45 sys_channel_close( client->channel )
94 Client client = _client; local
168 Client client; local
    [all...]
test2.c 47 } ClientRec, *Client;
49 static Client
52 Client client = calloc( sizeof(*client), 1 ); local
54 client->channel = channel;
55 return client;
59 client_free( Client client )
61 sys_channel_close( client->channel )
106 Client client = _client; local
181 Client client; local
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_service.h 45 class Client;
67 Client* client; member in struct:SafeBrowsingService::UnsafeResource
81 Client* client; member in struct:SafeBrowsingService::SafeBrowsingCheck
101 class Client {
103 virtual ~Client() {}
154 // Otherwise it returns false, and "client" is called asynchronously with the
156 virtual bool CheckBrowseUrl(const GURL& url, Client* client);
278 Client* client; member in struct:SafeBrowsingService::QueuedCheck
    [all...]
  /external/chromium/net/tools/fetch/
fetch_client.cc 53 // A network client
54 class Client {
56 Client(net::HttpTransactionFactory* factory, const std::string& url) :
60 connect_callback_(this, &Client::OnConnectComplete)),
62 read_callback_(this, &Client::OnReadComplete)) {
116 net::CompletionCallbackImpl<Client> connect_callback_;
117 net::CompletionCallbackImpl<Client> read_callback_;
173 Client** clients = new Client*[client_limit];
175 clients[i] = new Client(factory, url)
    [all...]
  /frameworks/base/services/camera/libcameraservice/
CameraService.h 38 class Client;
51 virtual sp<Client> getClientById(int cameraId);
70 wp<Client> mClient[MAX_CAMERAS]; // protected by mServiceLock
73 // atomics to record whether the hardware is allocated to some client.
86 class Client : public BnCamera
91 virtual status_t connect(const sp<ICameraClient>& client);
113 Client(const sp<CameraService>& cameraService,
119 ~Client();
121 // return our camera client
149 // convert client from cooki
    [all...]
CameraService.cpp 155 sp<Client> client; local
172 client = mClient[cameraId].promote();
173 if (client != 0) {
174 if (cameraClient->asBinder() == client->getCameraClient()->asBinder()) {
175 LOG1("CameraService::connect X (pid %d) (the same client)",
177 return client;
179 LOGW("CameraService::connect X (pid %d) rejected (existing client).",
208 client = new Client(this, cameraClient, hardware, cameraId, info.facing, callingPid)
221 sp<Client> client; local
930 sp<Client> client = gCameraService->getClientById((int) user); local
978 sp<Client> client = getClientFromCookie(user); local
997 sp<Client> client = getClientFromCookie(user); local
1030 sp<Client> client = getClientFromCookie(user); local
1272 sp<Client> client = mClient[i].promote(); local
    [all...]
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.h 89 class Client : public MessageReceiver {
91 virtual ~Client() { }
112 static PassRefPtr<Connection> createServerConnection(Identifier, Client*, RunLoop* clientRunLoop);
113 static PassRefPtr<Connection> createClientConnection(Identifier, Client*, RunLoop* clientRunLoop);
126 // before didCall is called on the client thread. Must be called before the connection is opened.
129 // handling the message on the client thread first.
192 Connection(Identifier, bool isServer, Client*, RunLoop* clientRunLoop);
225 Client* m_client;
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLServerSocketImplTest.java 56 Client client = null; local
75 client = new Client(ssocket.getLocalPort());
76 client.start();
79 while (!client.handshakeStarted()) {
87 client.close();
96 if (client != null) {
98 client.close();
114 Client client = null local
172 Client client = null; local
230 Client client = null; local
592 private Socket client = null; field in class:SSLServerSocketImplTest.Client
    [all...]
  /frameworks/base/media/libmediaplayerservice/
MediaPlayerService.cpp 242 LOGV("Create new media recorder client from pid %d", pid);
246 void MediaPlayerService::removeMediaRecorderClient(wp<MediaRecorderClient> client)
249 mMediaRecorderClients.remove(client);
250 LOGV("Delete media recorder client");
260 sp<IMediaPlayer> MediaPlayerService::create(pid_t pid, const sp<IMediaPlayerClient>& client,
265 sp<Client> c = new Client(
266 this, pid, connId, client, audioSessionId,
269 LOGV("Create new client(%d) from pid %d, uid %d, ", connId, pid,
272 wp<Client> w = c
1073 Client* client = static_cast<Client*>(cookie); local
    [all...]
MediaPlayerService.h 46 Antagonizer(notify_callback_f cb, void* client);
65 class Client;
188 void removeMediaRecorderClient(wp<MediaRecorderClient> client);
191 virtual sp<IMediaPlayer> create(pid_t pid, const sp<IMediaPlayerClient>& client, int audioSessionId);
199 void removeClient(wp<Client> client);
247 class Client : public BnMediaPlayer {
295 Client( const sp<MediaPlayerService>& service,
298 const sp<IMediaPlayerClient>& client,
301 Client();
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 109 user. It's kind of the OAuth client.
515 class Client(httplib2.Http):
  /frameworks/base/services/surfaceflinger/
SurfaceFlinger.h 47 class Client;
59 class Client : public BnSurfaceComposerClient
62 Client(const sp<SurfaceFlinger>& flinger);
63 ~Client();
224 friend class Client;
232 const sp<Client>& client,
237 const sp<Client>& client, DisplayID display,
242 const sp<Client>& client, DisplayID display
    [all...]

Completed in 634 milliseconds

1 2