OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CMD_OUT
(Results
1 - 3
of
3
) sorted by null
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/
testit_android
279
local
CMD_OUT
RET
281
CMD_OUT
=$(mktemp /tmp/testit_android-cmdout-XXXXXX)
282
# Run the command, while storing the standard output to
CMD_OUT
287
$ADB shell "$@ ; echo \$?" | sed -e 's![[:cntrl:]]!!g' > $
CMD_OUT
2>&1
289
RET=$(sed -e '$!d' $
CMD_OUT
)
291
OUT=$(sed -e '$d' $
CMD_OUT
)
298
rm -f $
CMD_OUT
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
testit_android
292
local
CMD_OUT
RET
294
CMD_OUT
=$(mktemp /tmp/testit_android-cmdout-XXXXXX)
295
# Run the command, while storing the standard output to
CMD_OUT
300
$ADB shell "$@ ; echo \$?" | sed -e 's![[:cntrl:]]!!g' > $
CMD_OUT
2>&1
302
RET=$(sed -e '$!d' $
CMD_OUT
)
304
OUT=$(sed -e '$d' $
CMD_OUT
)
311
rm -f $
CMD_OUT
/ndk/
ndk-gdb
383
local
CMD_OUT
RET OUTPUT VARNAME REDIRECT_STDERR
387
CMD_OUT
=`mktemp /tmp/ndk-gdb-cmdout-XXXXXX`
388
# Run the command, while storing the standard output to
CMD_OUT
391
adb_cmd shell "$@" ";" echo \$? | sed -e 's![[:cntrl:]]!!g' > $
CMD_OUT
2>&1
393
adb_cmd shell "$@" ";" echo \$? | sed -e 's![[:cntrl:]]!!g' > $
CMD_OUT
396
RET=`sed -e '$!d' $
CMD_OUT
`
398
OUT=`sed -e '$d' $
CMD_OUT
`
399
rm -f $
CMD_OUT
Completed in 58 milliseconds