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

1 2 3 4 5 6 7 8 91011>>

  /system/netd/
NetdCommand.cpp 19 NetdCommand::NetdCommand(const char *cmd) :
20 FrameworkCommand(cmd) {
NetdCommand.h 24 NetdCommand(const char *cmd);
  /system/vold/
VoldCommand.cpp 19 VoldCommand::VoldCommand(const char *cmd) :
20 FrameworkCommand(cmd) {
VoldCommand.h 24 VoldCommand(const char *cmd);
  /external/linux-tools-perf/util/
generate-cmdlist.sh 16 while read cmd
19 /^NAME/,/perf-'"$cmd"'/H
22 s/.*perf-'"$cmd"' - \(.*\)/ {"'"$cmd"'", "\1"},/
24 }' "${PREFIX}/Documentation/perf-$cmd.txt"
run-command.c 18 int start_command(struct child_process *cmd)
28 need_in = !cmd->no_stdin && cmd->in < 0;
31 if (cmd->out > 0)
32 close(cmd->out);
35 cmd->in = fdin[1];
38 need_out = !cmd->no_stdout
39 && !cmd->stdout_to_stderr
40 && cmd->out < 0;
45 else if (cmd->in
211 struct child_process cmd; local
    [all...]
  /external/kernel-headers/original/linux/
fcntl.h 41 #define IS_GETLK32(cmd) ((cmd) == F_GETLK)
42 #define IS_SETLK32(cmd) ((cmd) == F_SETLK)
43 #define IS_SETLKW32(cmd) ((cmd) == F_SETLKW)
44 #define IS_GETLK64(cmd) ((cmd) == F_GETLK64)
45 #define IS_SETLK64(cmd) ((cmd) == F_SETLK64
    [all...]
  /external/valgrind/main/coregrind/
link_tool_exe_darwin.in 141 my $cmd = "/usr/bin/ld";
143 $cmd = "$cmd -static";
149 $cmd = "$cmd -new_linker";
152 $cmd = "$cmd -arch $archstr";
153 $cmd = "$cmd -macosx_version_min 10.5";
154 $cmd = "$cmd -o $outname"
    [all...]
link_tool_exe_linux.in 76 my $cmd;
79 $cmd = "$cc -static -Wl,--section-start=.reginfo=$ala";
81 $cmd = "$cc -static -Wl,-Ttext=$ala";
86 $cmd = "$cmd $ARGV[$n]";
89 #print "link_tool_exe_linux: $cmd\n";
93 my $r = system("$cmd");
  /external/clang/test/Analysis/
rdar-6541136-region.c 11 struct load_wine *cmd = (void*) &wonky[1]; local
12 cmd = cmd;
23 struct load_wine *cmd = (void*) &wonky[1]; local
24 cmd = cmd;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
feedPublish.sh 35 cmd="$JAVA_HOME/bin/java -debug -Dant.home=$ANT_HOME -Dant.library.dir=$JAVA_HOME/lib -classpath $CLASSPATH org.apache.tools.ant.launch.Launcher"
36 cmd=$cmd" -buildfile feedPublish.xml -propertyfile ../properties/feedPublish.$projectName.properties"
37 cmd=$cmd" -Dbranch=$branch -Dversion=$version -DbuildID=$buildID -DbuildAlias=$buildAlias -DbuildType="${buildID:0:1};
38 cmd=$cmd" -DdependencyURLs=$dependencyURLs -Ddebug=$debug";
39 echo ""; echo $cmd | sed -e "s/ \-/# \-/g" -e "s/.jar:/.jar# :/g" | tr "#" "\n"; echo "";
40 $cmd;
feedManipulation.sh 23 cmd="$JAVA_HOME/bin/java \
33 echo $cmd | sed -e 's/ \-/\n \-/g' -e 's/:/\n :/g'; echo "";
36 $cmd;
  /external/quake/quake/src/QW/client/
input.h 29 void IN_Move (usercmd_t *cmd);
30 // add additional movement on top of the keyboard move cmd
in_null.c 17 void IN_Move (usercmd_t *cmd)
  /external/quake/quake/src/WinQuake/
input.h 29 void IN_Move (usercmd_t *cmd);
30 // add additional movement on top of the keyboard move cmd
in_null.cpp 36 void IN_Move (usercmd_t *cmd)
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_cmd.h 24 typedef struct cmd cmd_t;
25 typedef int (cmd_func_t)(void *dhd, cmd_t *cmd, char **argv);
28 struct cmd { struct
46 extern int dhd_get(void *dhd, int cmd, void *buf, int len);
47 extern int dhd_set(void *dhd, int cmd, void *buf, int len);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditCommandQt.cpp 26 EditCommandQt::EditCommandQt(WTF::RefPtr<EditCommand> cmd, QUndoCommand *parent)
28 , m_cmd(cmd)
33 EditCommandQt::EditCommandQt(WTF::RefPtr<EditCommand> cmd)
34 : m_cmd(cmd)
  /bionic/libc/bionic/
fcntl.c 33 int fcntl(int fd, int cmd, ...)
38 va_start(ap, cmd);
42 return __fcntl64(fd, cmd, arg);
  /external/wpa_supplicant_8/src/utils/
edit.h 12 int edit_init(void (*cmd_cb)(void *ctx, char *cmd),
14 char ** (*completion_cb)(void *ctx, const char *cmd, int pos),
17 int (*filter_cb)(void *ctx, const char *cmd));
  /frameworks/opt/telephony/tools/
tdi 8 cmd=$1
14 echo "Usage: $file_name $cmd <dc> <count> <cause> <retry-time>"
44 case ${cmd} in
  /development/ndk/sources/android/libportable/arch-x86/
fcntl.c 24 int WRAP(fcntl)(int fd, int cmd, ...)
29 va_start(ap, cmd);
33 if (cmd == F_GETLK64 ||
34 cmd == F_SETLK64 ||
35 cmd == F_SETLKW64) {
37 int result = __fcntl64(fd, cmd, (void *) &x86_flock64);
50 return __fcntl64(fd, cmd, arg);
  /external/linux-tools-perf/
perf.c 28 const char *cmd; member in struct:pager_config
37 if (!prefixcmp(var, "pager.") && !strcmp(var + 6, c->cmd))
43 int check_pager_config(const char *cmd)
46 c.cmd = cmd;
55 if (!prefixcmp(var, "tui.") && !strcmp(var + 4, c->cmd))
61 static int check_tui_config(const char *cmd)
64 c.cmd = cmd;
98 const char *cmd = (*argv)[0] local
261 const char *cmd; member in struct:cmd_struct
311 const char *cmd = argv[0]; local
372 struct strbuf cmd = STRBUF_INIT; local
440 const char *cmd; local
    [all...]
  /frameworks/base/media/java/android/media/
AsyncPlayer.java 54 private void startSound(Command cmd) {
61 player.setAudioStreamType(cmd.stream);
62 player.setDataSource(cmd.context, cmd.uri);
63 player.setLooping(cmd.looping);
70 long delay = SystemClock.uptimeMillis() - cmd.requestTime;
76 Log.w(mTag, "error loading sound for " + cmd.uri, e);
87 Command cmd = null; local
91 cmd = mCmdQueue.removeFirst();
94 switch (cmd.code)
166 Command cmd = new Command(); local
188 Command cmd = new Command(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
updateBugState.sh 11 cmd="$JAVA_HOME/bin/java \
19 echo "Running ..."; echo ""; echo $cmd | sed -e "s/ \-/# \-/g" -e "s/:/# :/g" | tr "#" "\n"; echo "";
23 $cmd;

Completed in 1336 milliseconds

1 2 3 4 5 6 7 8 91011>>