Searched refs:remote_cmd (Results 1 – 5 of 5) sorted by relevance
/external/libcxx/test/libcxx/android/ |
D | executors.py | 37 remote_cmd = ' '.join(env_cmd + cmd + ['; echo $?']) 39 remote_cmd = 'cd {} && {}'.format(remote_work_dir, remote_cmd) 40 adb_cmd.append(remote_cmd)
|
/external/libcxx/test/libcxx/test/ |
D | executor.py | 184 remote_cmd = ' '.join(env_cmd + cmd) 186 remote_cmd = 'cd ' + remote_work_dir + ' && ' + remote_cmd 187 return self.local_run(ssh_cmd + [remote_cmd])
|
/external/libvncserver/x11vnc/ |
D | remote.h | 39 extern int do_remote_query(char *remote_cmd, char *query_cmd, int remote_sync,
|
D | x11vnc.c | 1916 && !query_cmd && !remote_cmd && !unixpw && !got_gui_pw \ 2037 char *remote_cmd = NULL; in main() local 3976 remote_cmd = strdup(str); in main() 3978 if (remote_cmd && strchr(remote_cmd, ':') == NULL) { in main() 3985 n = strlen(remote_cmd) + strlen(argv[i]) + 2; in main() 3988 sprintf(str, "%s:%s", remote_cmd, argv[i]); in main() 3989 free(remote_cmd); in main() 3990 remote_cmd = str; in main() 4214 if (launch_gui && (query_cmd || remote_cmd)) { in main() 4230 if (!remote_cmd && !query_cmd) { in main() [all …]
|
D | remote.c | 65 int do_remote_query(char *remote_cmd, char *query_cmd, int remote_sync, 191 int do_remote_query(char *remote_cmd, char *query_cmd, int remote_sync, in do_remote_query() argument 197 query_cmd = remote_cmd; in do_remote_query() 198 remote_cmd = NULL; in do_remote_query() 200 if (remote_cmd && strstr(remote_cmd, "DIRECT:") == remote_cmd) { in do_remote_query() 202 remote_cmd += strlen("DIRECT:"); in do_remote_query() 209 if (remote_cmd) { in do_remote_query() 210 rcmd = (char *) malloc(strlen(remote_cmd) + 5); in do_remote_query() 212 strcat(rcmd, remote_cmd); in do_remote_query()
|