HomeSort by relevance Sort by last modified time
    Searched defs:remote (Results 101 - 125 of 677) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/layoutlib/remote/common/src/com/android/layout/remote/util/
StreamUtil.java 17 package com.android.layout.remote.util;
19 import com.android.layout.remote.util.RemoteInputStream.EndOfStreamException;
  /frameworks/native/libs/vr/libpdx_uds/
client_channel_factory.cpp 87 sockaddr_un remote; local
88 remote.sun_family = AF_UNIX;
89 strncpy(remote.sun_path, endpoint_path_.c_str(), sizeof(remote.sun_path));
90 remote.sun_path[sizeof(remote.sun_path) - 1] = '\0';
91 ALOGD("ClientChannelFactory: Waiting for endpoint at %s", remote.sun_path);
96 ALOGD("ClientChannelFactory: Connecting to %s", remote.sun_path);
98 socket_.Get(), reinterpret_cast<sockaddr*>(&remote), sizeof(remote)));
    [all...]
  /hardware/google/av/codec2/hidl/1.0/utils/include/codec2/hidl/1.0/
Component.h 119 // An IComponent object is either local or remote. If it is local, we can
120 // use the underlying pointer as a key. If it is remote, we have to use the
133 // remote & remote
135 remote.unsafe_get(),
136 other.remote.unsafe_get()) :
137 // remote & local
140 // local & remote
149 wp<IBinder> remote; member in struct:hardware::google::media::c2::V1_0::utils::Component::InterfaceKey
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
AddCommandFileOp.java 16 package com.android.tradefed.command.remote;
26 * Remote operation for adding a command file to the local tradefed scheduler.
DeviceDescriptor.java 17 package com.android.tradefed.command.remote;
GetLastCommandResultOp.java 16 package com.android.tradefed.command.remote;
20 import com.android.tradefed.command.remote.CommandResult.Status;
30 * Remote operation for getting the result of the last command executed
77 * Unpacks the response from remote TF manager into this object.
117 * Packs the result into the json response to send to remote client.
  /tools/tradefederation/core/src/com/android/tradefed/command/remote/
DeviceTracker.java 16 package com.android.tradefed.command.remote;
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestConnectionManager.java 120 for (RemoteConnection remote : conferenceable) {
121 if (mManagedConnectionByRemote.containsKey(remote)) {
122 c.add(mManagedConnectionByRemote.get(remote));
152 TestManagedConnection(RemoteConnection remote, boolean isIncoming) {
153 mRemote = remote;
158 setConnectionProperties(remote.getConnectionProperties());
281 log("onConnectionAdded cannot find remote connection: " + connection);
293 log("onConnectionRemoved cannot find remote connection: " + connection);
332 public TestManagedConference(RemoteConference remote) {
334 mRemote = remote;
386 RemoteConnection remote = incoming local
    [all...]
  /prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-remote-driver/2.42.2/
selenium-remote-driver-2.42.2.jar 
  /external/deqp/framework/platform/android/
tcuAndroidExecService.cpp 76 jobject remote = 0; local
100 remote = env->NewObject(m_remoteCls, ctorId, context, logFileName);
101 JNI_CHECK(remote);
106 // Acquire global reference to remote.
107 m_remote = env->NewGlobalRef(remote);
109 env->DeleteLocalRef(remote);
110 remote = 0;
125 if (remote)
126 env->DeleteLocalRef(remote);
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_ptrace_dumper.cc 139 uint8_t* const remote = (uint8_t*) src; local
143 if (sys_ptrace(PTRACE_PEEKDATA, child, remote + done, &tmp) == -1) {
  /external/ipsec-tools/src/racoon/
admin.c 408 struct sockaddr *remote = NULL; local
423 /* get remote IP address and port number. */
424 if ((remote = dupsaddr(dst)) == NULL)
427 port = extract_port(rmconf->remote);
428 if (set_port(remote, port) == NULL)
461 "%s\n", saddrwop2str(remote));
464 if (isakmp_ph1begin_i(rmconf, remote, local) < 0)
471 if (remote != NULL)
472 racoon_free(remote);
  /external/ltp/testcases/kernel/syscalls/cma/
process_vm_readv03.c 167 struct iovec local, remote; local
180 remote.iov_base = foo;
181 remote.iov_len = len;
183 TEST(test_process_vm_readv(pids[0], &local, 1, &remote, 1, 0));
195 struct iovec local[NUM_LOCAL_VECS], *remote; local
200 remote = SAFE_MALLOC(tst_exit, nr_iovecs * sizeof(struct iovec));
202 remote[i].iov_base = (void *)addrs[i];
203 remote[i].iov_len = bufsz_arr[i];
205 tst_resm(TINFO, "child 1: %d remote iovecs received.", nr_iovecs);
216 remote, nr_iovecs, 0))
    [all...]
  /external/ltp/testcases/network/nfsv4/locks/
netsync.c 50 struct sockaddr_in remote; local
75 accept(sock, (struct sockaddr *)&remote, &size)) == -1) {
  /external/mtpd/
mtpd.h 34 uint16_t remote; member in struct:sockaddr_pppopns
44 } local, remote; member in struct:sockaddr_pppolac
  /external/testng/src/main/java/org/testng/remote/strprotocol/
AbstractRemoteTestRunnerClient.java 16 package org.testng.remote.strprotocol;
106 * Requests to stop the remote test run.
  /external/toolchain-utils/automation/clients/helper/
perforce.py 12 """Stores information about relative path mapping (remote to local)."""
42 def __init__(self, remote, local=None, common_suffix=None):
45 self.remote = os.path.join(remote, suffix)
46 self.local = os.path.join(local or remote, suffix)
63 remote = property(_GetRemote, _SetRemote) variable in class:PathMapping
74 return (os.path.join('//', depot, self.remote),
78 return '%s(%s => %s)' % (self.__class__.__name__, self.remote, self.local)
  /external/vogar/src/vogar/android/
AdbTarget.java 164 @Override public void push(File local, File remote) {
165 Command fallback = new Command(log, "adb", "push", local.getPath(), remote.getPath());
166 deviceFilesystem.mkdirs(remote.getParentFile());
171 boolean cacheHit = pushCache.getFromCache(remote, key);
177 pushCache.insert(key, remote);
183 @Override public void pull(File remote, File local) {
184 new Command(log, "adb", "pull", remote.getPath(), local.getPath()).execute();
  /frameworks/av/camera/
CameraBase.cpp 190 sp<typename TCamTraits::TCamUser> CameraBase<TCam, TCamTraits>::remote() function in class:android::CameraBase
203 ALOGW("mediaserver's remote binder Camera object died");
  /frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
RemoteRenderParamsAdapter.java 17 package com.android.layoutlib.bridge.remote.client.adapters;
23 import com.android.layout.remote.api.RemoteAssetRepository;
24 import com.android.layout.remote.api.RemoteHardwareConfig;
25 import com.android.layout.remote.api.RemoteLayoutLog;
26 import com.android.layout.remote.api.RemoteLayoutlibCallback;
27 import com.android.layout.remote.api.RemoteRenderParams;
28 import com.android.layout.remote.api.RemoteRenderResources;
29 import com.android.layout.remote.api.RemoteSessionParams;
RemoteRenderResourcesAdapter.java 17 package com.android.layoutlib.bridge.remote.client.adapters;
23 import com.android.layout.remote.api.RemoteRenderResources;
  /frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
RemoteHardwareConfig.java 17 package com.android.layout.remote.api;
29 * Remote version of the {@link HardwareConfig} class
RemoteXmlPullParser.java 17 package com.android.layout.remote.api;
19 import com.android.layout.remote.util.RemoteInputStream;
26 import java.rmi.Remote;
30 * Remote version of the {@link XmlPullParser} interface
32 public interface RemoteXmlPullParser extends Remote {
  /frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/
ServerMain.java 17 package com.android.layoutlib.bridge.remote.server;
19 import com.android.layout.remote.api.RemoteBridge;
  /frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/adapters/
RemoteRenderResourcesAdapter.java 17 package com.android.layoutlib.bridge.remote.server.adapters;
24 import com.android.layout.remote.api.RemoteRenderResources;
40 // Ignored for remote operations.
45 // Ignored for remote operations.

Completed in 692 milliseconds

1 2 3 45 6 7 8 91011>>