/frameworks/native/services/surfaceflinger/ |
LayerDim.h | 32 LayerDim(SurfaceFlinger* flinger, const sp<Client>& client,
|
/frameworks/base/tools/preload2/src/com/android/preload/actions/ |
ScanAllPackagesAction.java | 19 import com.android.ddmlib.Client; 45 Client[] clients = clientUtils.findAllClients(device); 46 for (Client c : clients) {
|
/frameworks/native/libs/vr/libpdx/private/pdx/ |
client.h | 26 * Base class of client-side service API classes. 28 class Client { 32 virtual ~Client() = default; 35 * Returns true if the Client instance successfully initialized, false 45 * Returns the error code describing the Client initialization failure, or 0 55 explicit Client(std::unique_ptr<ClientChannel> channel); 56 explicit Client(std::unique_ptr<ClientChannelFactory> channel_factory, 60 * Called by Client::Connect() after successfully connecting to the service 64 * Subclasses may call Client::Close() within this method to terminate the 65 * connection; Client::Connect() returns the negated error passed t [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/ |
RingtonePlayer.java | 60 private final HashMap<IBinder, Client> mClients = new HashMap<IBinder, Client>(); 76 * Represents an active remote {@link Ringtone} client. 78 private class Client implements IBinder.DeathRecipient { 82 public Client(IBinder token, Uri uri, UserHandle user, AudioAttributes aa) { 108 Client client; 110 client = mClients.get(token); 111 if (client == null) { 113 client = new Client(token, uri, user, aa) [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.compat | 4 ATTRIBUTE Client-Id 4 ipaddr 5 ATTRIBUTE Client-Port-Id 5 integer 31 ATTRIBUTE Client-Port-DNIS 30 string
|
/external/autotest/server/site_tests/bluetooth_RegressionServer/ |
bluetooth_RegressionServer.py | 7 from autotest_lib.client.common_lib import error 24 error.TestError('Must provide client\'s IP address to test') 26 client = hosts.create_host(client_ip) 27 client_at = autotest.Autotest(client) 29 logging.info('Running client side tests') 34 client.reboot() 35 logging.info('Returning to Client after reboot') 37 addrs=device_addrs, test_phase='client')
|
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/ |
PlaybackGlueHostImplWithViewHolder.java | 37 Client mSeekClient; 96 public void setPlaybackSeekUiClient(Client client) { 97 mSeekClient = client; 100 protected Client mChainedClient = new Client() {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
DeviceViewAction.java | 3 import com.android.ddmlib.Client; 22 private Client mClient; 30 public void setClient(Client c) { 64 // start tracing on the client 75 // wait for a few seconds for the client to start the trace server 91 // inform the client that it doesn't need to be traced anymore 110 public void selectedClientChanged(Client c) {
|
/external/autotest/server/brillo/feedback/ |
client_factory.py | 6 from autotest_lib.client.common_lib import error 15 """Instantiates a feedback client. 17 @param fb_client_name: Name of the desired client. 18 @param available_clients: Set of available client names to choose from. 24 @return An instance of client.common_lib.feedback.client.Client. 26 @raise error.TestError: Requested client is invalid/unavailable/unknown. 29 raise error.TestError('Feedback client name is empty') 32 'Feedback client (%s) is unknown or unavailble for this test' [all...] |
/external/curl/docs/cmdline-opts/ |
cert.d | 4 Help: Client certificate file and password 8 Tells curl to use the specified client certificate file when getting a file 13 private key and the client certificate concatenated! See --cert and --key to
|
/external/deqp/execserver/tools/ |
xsClient.cpp | 21 * \brief ExecServer Client. 148 class Client 151 Client (const CommandLine& cmdLine); 152 ~Client (void); 161 Client::Client (const CommandLine& cmdLine) 166 Client::~Client (void) 170 void Client::run (void) 195 // Run client loop [all...] |
/external/python/cpython2/PC/os2emx/ |
pythonpm.c | 56 HWND Client; 74 &Client);
|
/external/v4l2_codec2/vda/ |
video_decode_accelerator.cc | 25 void VideoDecodeAccelerator::Client::NotifyInitializationComplete( 33 const base::WeakPtr<Client>& decode_client,
|
/frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/ |
Hprof.java | 19 import com.android.ddmlib.Client; 48 public static File doHprof(Client client, int timeout) { 49 GetHprof gh = new GetHprof(client, timeout); 119 private Client client; field in class:Hprof.GetHprof 121 public GetHprof(Client client, long timeout) { 122 this.client = client; [all...] |
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/ |
L.java | 32 private static final Client sSystemClient = new Client() { 43 private static Client sClient = sSystemClient; 45 public static void setClient(Client systemClient) { 136 public interface Client {
|
/prebuilts/go/darwin-x86/src/net/smtp/ |
smtp.go | 29 // A Client represents a client connection to an SMTP server. 30 type Client struct { 31 // Text is the textproto.Conn used by the Client. It is exported to allow for 37 // whether the Client is using TLS 49 // Dial returns a new Client connected to an SMTP server at addr. 51 func Dial(addr string) (*Client, error) { 60 // NewClient returns a new Client using an existing connection and host as a 62 func NewClient(conn net.Conn, host string) (*Client, error) { 69 c := &Client{Text: text, conn: conn, serverName: host, localName: "localhost" [all...] |
/prebuilts/go/linux-x86/src/net/smtp/ |
smtp.go | 29 // A Client represents a client connection to an SMTP server. 30 type Client struct { 31 // Text is the textproto.Conn used by the Client. It is exported to allow for 37 // whether the Client is using TLS 49 // Dial returns a new Client connected to an SMTP server at addr. 51 func Dial(addr string) (*Client, error) { 60 // NewClient returns a new Client using an existing connection and host as a 62 func NewClient(conn net.Conn, host string) (*Client, error) { 69 c := &Client{Text: text, conn: conn, serverName: host, localName: "localhost" [all...] |
/frameworks/av/media/libmediaplayerservice/ |
MediaPlayerService.cpp | 296 ALOGV("Create new media recorder client from pid %d", pid); 300 void MediaPlayerService::removeMediaRecorderClient(const wp<MediaRecorderClient>& client) 303 mMediaRecorderClients.remove(client); 304 ALOGV("Delete media recorder client"); 315 sp<IMediaPlayer> MediaPlayerService::create(const sp<IMediaPlayerClient>& client, 321 sp<Client> c = new Client( 322 this, pid, connId, client, audioSessionId, 325 ALOGV("Create new client(%d) from pid %d, uid %d, ", connId, pid, 328 wp<Client> w = c 1419 Client* client = static_cast<Client*>(cookie); local [all...] |
/prebuilts/go/darwin-x86/src/net/rpc/ |
client.go | 37 // Client represents an RPC Client. 39 // with a single Client, and a Client may be used by 41 type Client struct { 55 // reading of RPC responses for the client side of an RPC session. 56 // The client calls WriteRequest to write a request to the connection 58 // to read responses. The client calls Close when finished with the 71 func (client *Client) send(call *Call) [all...] |
/prebuilts/go/linux-x86/src/net/rpc/ |
client.go | 37 // Client represents an RPC Client. 39 // with a single Client, and a Client may be used by 41 type Client struct { 55 // reading of RPC responses for the client side of an RPC session. 56 // The client calls WriteRequest to write a request to the connection 58 // to read responses. The client calls Close when finished with the 71 func (client *Client) send(call *Call) [all...] |
/external/libmojo/mojo/common/ |
data_pipe_drainer.cc | 16 DataPipeDrainer::DataPipeDrainer(Client* client, 18 : client_(client), source_(std::move(source)), weak_factory_(this) {
|
/frameworks/native/libs/vr/libdisplay/include/private/dvr/ |
display_manager_client.h | 7 #include <pdx/client.h> 27 using Client::event_fd;
|
/external/boringssl/src/tool/ |
tool.cc | 46 { "client", Client }, 53 { "s_client", Client },
|
/external/pdfium/xfa/fxfa/app/ |
xfa_ffsignature.cpp | 102 return FWL_WidgetHit::Client; 109 return FWL_WidgetHit::Client;
|
/external/clang/lib/Frontend/Rewrite/ |
FixItRewriter.cpp | 1 //===--- FixItRewriter.cpp - 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. 40 Client = Diags.getClient(); 45 Diags.setClient(Client, Owner.release() != nullptr); 119 return Client ? Client->IncludeInDiagnosticCounts() : true; 131 Client->HandleDiagnostic(DiagLevel, Info); 192 /// \brief Emit a diagnostic via the adapted diagnostic client. 195 // clear out any current diagnostic, and let the downstream client [all...] |