HomeSort by relevance Sort by last modified time
    Searched refs:remote (Results 176 - 200 of 1186) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webrtc/talk/app/webrtc/
localaudiosource.h 52 bool remote() const override { return false; }
  /frameworks/native/libs/binder/include/binder/
IInterface.h 66 explicit BpInterface(const sp<IBinder>& remote);
135 inline BpInterface<INTERFACE>::BpInterface(const sp<IBinder>& remote)
136 : BpRefBase(remote)
143 return remote();
  /frameworks/native/services/audiomanager/
IAudioManager.cpp 58 const status_t res = remote()->transact(TRACK_PLAYER, data, &reply, 0);
84 return remote()->transact(PLAYER_ATTRIBUTES, data, &reply, IBinder::FLAG_ONEWAY);
92 return remote()->transact(PLAYER_EVENT, data, &reply, IBinder::FLAG_ONEWAY);
99 return remote()->transact(RELEASE_PLAYER, data, &reply, IBinder::FLAG_ONEWAY);
  /frameworks/native/services/batteryservice/
IBatteryPropertiesRegistrar.cpp 38 remote()->transact(REGISTER_LISTENER, data, NULL);
45 remote()->transact(UNREGISTER_LISTENER, data, NULL);
52 remote()->transact(GET_PROPERTY, data, &reply);
67 remote()->transact(SCHEDULE_UPDATE, data, NULL);
  /packages/apps/Dialer/java/com/android/incallui/video/protocol/
VideoCallScreenDelegate.java 48 void setSurfaceViews(SurfaceView preview, SurfaceView remote);
  /prebuilts/go/darwin-x86/src/net/
interface_linux_test.go 25 Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name},
29 Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name},
46 Args: []string{"ip", "tunnel", "add", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote},
50 Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name},
54 Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name},
58 Args: []string{"ip", "tunnel", "del", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote},
  /prebuilts/go/linux-x86/src/net/
interface_linux_test.go 25 Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name},
29 Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name},
46 Args: []string{"ip", "tunnel", "add", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote},
50 Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name},
54 Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name},
58 Args: []string{"ip", "tunnel", "del", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote},
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
AllocateDeviceOp.java 16 package com.android.tradefed.command.remote;
22 * Remote operation for allocating a device.
FreeDeviceOp.java 16 package com.android.tradefed.command.remote;
22 * A remote operation for freeing a previously remotely allocated device.
IRemoteClient.java 17 package com.android.tradefed.command.remote;
22 * Interface for sending remote TradeFederation commands.
27 * Send a 'list devices' request to remote TF
35 * Send an 'allocate device' request to remote TF.
43 * Send a 'free previously allocated device' request to remote TF
51 * Send an 'add command' request to remote TF. This will add the command to the queue of
65 * Send an 'add command file' request to remote TF.
75 * Send a 'execute this command on given device' request to remote TF.
77 * Unlike {@link #sendAddCommand(long, String...)}, this is used in cases where the remote
92 * Poll the remote TF for the last command result on executed given device
    [all...]
StartHandoverOp.java 16 package com.android.tradefed.command.remote;
22 * A remote operation for starting handover with another Remote Manager at a given port.
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
TargetSetupError.java 18 import com.android.tradefed.command.remote.DeviceDescriptor;
  /external/ltp/testcases/kernel/syscalls/cma/
process_vm_readv03.c 170 struct iovec local, remote; local
183 remote.iov_base = foo;
184 remote.iov_len = len;
186 TEST(test_process_vm_readv(pids[0], &local, 1, &remote, 1, 0));
198 struct iovec local[NUM_LOCAL_VECS], *remote; local
203 remote = SAFE_MALLOC(tst_exit, nr_iovecs * sizeof(struct iovec));
205 remote[i].iov_base = (void *)addrs[i];
206 remote[i].iov_len = bufsz_arr[i];
208 tst_resm(TINFO, "child 1: %d remote iovecs received.", nr_iovecs);
219 remote, nr_iovecs, 0))
    [all...]
  /external/testng/src/main/java/org/testng/remote/
RemoteTestNG.java 1 package org.testng.remote;
18 import org.testng.remote.strprotocol.GenericMessage;
19 import org.testng.remote.strprotocol.IMessageSender;
20 import org.testng.remote.strprotocol.MessageHelper;
21 import org.testng.remote.strprotocol.MessageHub;
22 import org.testng.remote.strprotocol.RemoteTestListener;
23 import org.testng.remote.strprotocol.SerializedMessageSender;
24 import org.testng.remote.strprotocol.StringMessageSender;
25 import org.testng.remote.strprotocol.SuiteMessage;
36 * Extension of TestNG registering a remote TestListener.
    [all...]
  /frameworks/av/media/libmedia/
IMediaPlayerService.cpp 62 remote()->transact(CREATE_METADATA_RETRIEVER, data, &reply);
73 remote()->transact(CREATE, data, &reply);
82 remote()->transact(CREATE_MEDIA_RECORDER, data, &reply);
89 remote()->transact(GET_OMX, data, &reply);
97 remote()->transact(MAKE_HDCP, data, &reply);
105 remote()->transact(ADD_BATTERY_DATA, data, &reply);
111 return remote()->transact(PULL_BATTERY_DATA, data, reply);
122 remote()->transact(LISTEN_FOR_REMOTE_DISPLAY, data, &reply);
129 remote()->transact(GET_CODEC_LIST, data, &reply);
  /frameworks/av/media/libaudioclient/
IAudioTrack.cpp 59 status_t status = remote()->transact(GET_CBLK, data, &reply);
73 status_t status = remote()->transact(START, data, &reply);
86 remote()->transact(STOP, data, &reply);
93 remote()->transact(FLUSH, data, &reply);
100 remote()->transact(PAUSE, data, &reply);
108 status_t status = remote()->transact(ATTACH_AUX_EFFECT, data, &reply);
121 status_t status = remote()->transact(SET_PARAMETERS, data, &reply);
131 status_t status = remote()->transact(GET_TIMESTAMP, data, &reply);
146 remote()->transact(SIGNAL, data, &reply);
172 status = remote()->transact(APPLY_VOLUME_SHAPER, data, &reply
    [all...]
  /frameworks/av/radio/
IRadio.cpp 58 remote()->transact(DETACH, data, &reply);
69 status_t status = remote()->transact(SET_CONFIGURATION, data, &reply);
83 status_t status = remote()->transact(GET_CONFIGURATION, data, &reply);
98 status_t status = remote()->transact(SET_MUTE, data, &reply);
112 status_t status = remote()->transact(GET_MUTE, data, &reply);
129 status_t status = remote()->transact(SCAN, data, &reply);
142 status_t status = remote()->transact(STEP, data, &reply);
155 status_t status = remote()->transact(TUNE, data, &reply);
166 status_t status = remote()->transact(CANCEL, data, &reply);
181 status_t status = remote()->transact(GET_PROGRAM_INFORMATION, data, &reply)
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp.c 216 struct sockaddr_storage remote; local
218 unsigned int remote_len = sizeof(remote);
226 MSG_PEEK, (struct sockaddr *)&remote, &remote_len,
240 0, (struct sockaddr *)&remote, &remote_len)) != 1) {
283 plog(LLV_ERROR, LOCATION, (struct sockaddr *)&remote,
288 0, (struct sockaddr *)&remote, &remote_len)) < 0) {
301 0, (struct sockaddr *)&remote, &remote_len)) < 0) {
316 0, (struct sockaddr *)&remote, &remote_len)) < 0) {
325 0, (struct sockaddr *)&remote, &remote_len,
347 plog(LLV_ERROR, LOCATION, (struct sockaddr *)&remote,
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskOutput.cpp 73 AudioRemotePlayback* remote = reinterpret_cast<AudioRemotePlayback*>(hw.get()); local
74 if (!remote->startPlaybackForRemoteData(id, buffer->isStereo())) {
  /external/autotest/client/site_tests/security_RestartJob/
security_RestartJob.py 44 remote, local = socket.socketpair(socket.AF_UNIX)
46 sessionmanager.RestartJob(dbus.types.UnixFd(remote), cmd)
  /external/autotest/server/hosts/
__init__.py 13 from remote import RemoteHost
  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts/
testing.properties.template 11 #target to call in test.xml: runtests-local | runtests-remote
12 testTarget=runtests-remote
33 #name of script to execute on remote machine
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
racoon.conf 8 remote 192.0.2.50 {
  /external/ipsec-tools/src/racoon/samples/roadwarrior/server/
racoon.conf 7 remote anonymous {

Completed in 1835 milliseconds

1 2 3 4 5 6 78 91011>>