HomeSort by relevance Sort by last modified time
    Searched refs:remote (Results 1 - 25 of 172) sorted by null

1 2 3 4 5 6 7

  /external/llvm/utils/bugpoint/
RemoteRunSafely.sh 15 # <hostname> is the remote host to execute the program,
16 # <login_name> is the username on the remote host,
17 # <port> is the port used by the remote client,
93 remote="./"$PROGRAM
97 'rm -f '$remote' ; ' \
98 'cat > '$remote' ; chmod +x '$remote' ; '$remote' '$*' ; ' \
99 'err=$? ; rm -f '$remote' ; exit $err'
  /bionic/libc/kernel/uapi/linux/
if_pppopns.h 30 __u16 remote; member in struct:sockaddr_pppopns
if_pppolac.h 31 } local, remote; member in struct:sockaddr_pppolac
  /development/ndk/platforms/android-L/include/linux/
if_pppopns.h 30 __u16 remote; member in struct:sockaddr_pppopns
if_pppolac.h 31 } local, remote; member in struct:sockaddr_pppolac
  /external/kernel-headers/original/uapi/linux/
if_pppopns.h 29 __u16 remote; member in struct:sockaddr_pppopns
if_pppolac.h 30 } local, remote; member in struct:sockaddr_pppolac
  /cts/suite/audio_quality/lib/src/audio/
AudioRemote.cpp 33 AudioRemote::AudioRemote(android::sp<RemoteAudio>& remote)
34 : mRemote(remote)
39 AudioRemotePlayback::AudioRemotePlayback(android::sp<RemoteAudio>& remote)
40 : AudioRemote(remote)
66 AudioRemoteRecording::AudioRemoteRecording(android::sp<RemoteAudio>& remote)
67 : AudioRemote(remote)
  /cts/suite/audio_quality/lib/include/audio/
AudioRemote.h 33 AudioRemote(android::sp<RemoteAudio>& remote);
45 AudioRemotePlayback(android::sp<RemoteAudio>& remote);
55 AudioRemoteRecording(android::sp<RemoteAudio>& remote);
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
cros_interface_unittest.py 23 remote = options_for_unittests.GetCopy().cros_remote
25 remote,
34 remote = options_for_unittests.GetCopy().cros_remote
36 remote,
51 remote = options_for_unittests.GetCopy().cros_remote
53 remote,
60 remote = options_for_unittests.GetCopy().cros_remote
62 remote,
73 remote = options_for_unittests.GetCopy().cros_remote
75 remote,
    [all...]
  /external/lldb/tools/debugserver/source/
libdebugserver.cpp 52 // Get our program path and arguments from the remote connection.
53 // We will need to start up the remote connection without a PID, get the
64 RNBRemote* remote = remoteSP.get(); local
65 RNBContext& ctx = remote->Context();
80 err = remote->HandleReceivedPacket (&type);
107 // a catch all for any other gdb remote packets that failed
151 HandleProcessStateChange (RNBRemoteSP &remote, bool initialize)
153 RNBContext& ctx = remote->Context();
163 DNBLogThreadedIf (LOG_RNB_MINIMAL, "%s (&remote, initialize=%i) pid_state = %s", __FUNCTION__, (int)initialize, DNBStateAsString (pid_state));
188 remote->FlushSTDIO()
352 RNBRemote *remote = g_remoteSP.get(); local
    [all...]
debugserver.cpp 71 // Get our program path and arguments from the remote connection.
72 // We will need to start up the remote connection without a PID, get the
77 RNBRunLoopGetStartModeFromRemote (RNBRemote* remote)
81 if (remote)
83 RNBContext& ctx = remote->Context();
105 err = remote->HandleReceivedPacket (&type);
138 // a catch all for any other gdb remote packets that failed
163 RNBRunLoopLaunchInferior (RNBRemote *remote, const char *stdin_path, const char *stdout_path, const char *stderr_path, bool no_stdio)
165 RNBContext& ctx = remote->Context();
251 if (remote->Comm().IsConnected()
818 RNBRemote *remote = g_remoteSP.get(); local
    [all...]
  /external/chromium_org/remoting/host/installer/linux/debian/
chrome-remote-desktop.init 4 # Provides: chrome-remote-desktop
9 # Short-Description: Chrome Remote Desktop service
12 # /etc/init.d/chrome-remote-desktop: Start and stop Chrome Remote Desktop host daemon.
14 HOST_PATH=/opt/google/chrome-remote-desktop/chrome-remote-desktop
16 # Group of users for which Chrome Remote Desktop is enabled. Users are added
18 CHROME_REMOTING_GROUP=chrome-remote-desktop
73 log_begin_msg "Starting Chrome Remote Desktop host for $1..."
79 log_begin_msg "Stopping Chrome Remote Desktop host for $1...
    [all...]
postinst 14 DisplayIf: /opt/google/chrome-remote-desktop/is-remoting-session
15 Description: Chrome Remote Desktop has been updated. Please save your work and log out in order to apply this update. Your virtual desktop will be restarted automatically.
19 VAR_DIR="/var/lib/chrome-remote-desktop"
25 echo "Shutting down Chrome Remote Desktop hosts (they will restart automatically)..."
26 killall -q chrome-remote-desktop-host || true
34 echo "$LOGOUT_MSG" > "$NOTIFIER_DIR/chrome-remote-desktop-logout"
44 DEFAULTS_FILE="/etc/default/chrome-remote-desktop"
51 nohup sh /etc/cron.daily/chrome-remote-desktop > /dev/null 2>&1 &
preinst 9 VAR_DIR="/var/lib/chrome-remote-desktop"
22 save_hash /opt/google/chrome-remote-desktop
postrm 10 delgroup --quiet chrome-remote-desktop > /dev/null || true
25 DEFAULTS_FILE="/etc/default/chrome-remote-desktop"
37 rm -f "$APT_SOURCESDIR/chrome-remote-desktop.list"
  /external/chromium_org/third_party/webrtc/base/
socketpool.cc 42 const SocketAddress& remote, int* err) {
43 LOG_F(LS_VERBOSE) << "(" << remote << ")";
46 if (remote == it->first) {
57 if (StreamInterface* stream = pool_->RequestConnectedStream(remote, err)) {
59 active_.push_front(ConnectedStream(remote, stream));
120 NewSocketPool::RequestConnectedStream(const SocketAddress& remote, int* err) {
122 factory_->CreateAsyncSocket(remote.family(), SOCK_STREAM);
128 if ((socket->Connect(remote) != 0) && !socket->IsBlocking()) {
158 ReuseSocketPool::RequestConnectedStream(const SocketAddress& remote, int* err) {
163 int family = remote.family()
    [all...]
socketpool.h 36 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
52 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
81 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
101 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
126 virtual StreamInterface* RequestConnectedStream(const SocketAddress& remote,
  /external/llvm/utils/
GetRepositoryPath 22 git remote -v | grep 'fetch' | awk '{ print $2 }' | head -n1
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCStatsReport.idl 36 readonly attribute RTCStatsReport remote;
  /external/chromium_org/tools/android/
adb_remote_setup.sh 38 Configures adb on a remote machine to communicate with a device attached to the
43 REMOTE_HOST hostname of remote machine
44 REMOTE_ADB path to adb on the remote machine (you can omit this if adb is in
45 the remote host's path)
64 # Ensure local and remote versions of adb are the same.
69 echo "WARNING: local adb is not the same version as remote adb." >&2
72 echo " remote adb: $remote_adb_version" >&2
77 # Kill the adb server on the remote host.
83 # Forward various ports from the remote host to the local host:
  /external/mtpd/
mtpd.h 34 uint16_t remote; member in struct:sockaddr_pppopns
44 } local, remote; member in struct:sockaddr_pppolac
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_devtools_extension_api.py 45 platformExtensionAPI(injectedExtensionAPI("remote-" + window.parent.frames.length));
  /external/compiler-rt/test/builtins/Unit/
test 4 REMOTE=0
9 REMOTE=1
10 mkdir -p remote
41 if test "$REMOTE" = "1"
43 if gcc $CFLAGS $FILE ../../darwin_fat/Release/libcompiler_rt.a $LIBS $EXTRA -o ./remote/$FILE.exe
  /external/ipsec-tools/src/racoon/
handler.c 140 * search for isakmpsa handler by source and remote address.
145 getph1byaddr(local, remote, established)
146 struct sockaddr *local, *remote;
153 plog(LLV_DEBUG2, LOCATION, NULL, "remote: %s\n", saddr2str(remote));
159 plog(LLV_DEBUG2, LOCATION, NULL, "p->remote: %s\n", saddr2str(p->remote));
166 && CMPSADDR(remote, p->remote) == 0){
178 getph1byaddrwop(local, remote)
    [all...]

Completed in 892 milliseconds

1 2 3 4 5 6 7