/external/chromium_org/third_party/libevent/test/ |
regress_rpc.c | 184 fprintf(stdout, "Testing Basic RPC Support: "); 190 fprintf(stdout, "FAILED\n"); 201 fprintf(stdout, "FAILED\n"); 212 fprintf(stdout, "FAILED\n"); 225 fprintf(stdout, "FAILED\n"); 229 fprintf(stdout, "OK\n"); 268 fprintf(stdout, "Testing Good RPC Post: "); 274 fprintf(stdout, "FAILED\n"); 285 fprintf(stdout, "FAILED\n"); 302 fprintf(stdout, "FAILED\n") [all...] |
/bionic/libc/netbsd/resolv/ |
res_debug.h | 32 res_pquery(statp, query, size, stdout);\
|
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/bad/ |
ppapi_bad_no_ppp_instance.cc | 31 fflush(stdout);
|
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/manifest/ |
manifest_bad.cc | 31 fflush(stdout);
|
/external/chromium_org/testing/android/ |
native_test_util.h | 25 fflush(stdout);
|
/external/chromium_org/third_party/sqlite/src/tool/ |
soak1.tcl | 59 exec make -f $makefilename clean >@stdout 2>@stdout 60 exec make -f $makefilename $target >@stdout 2>@stdout
|
/external/chromium_org/tools/gyp/test/actions-multiple/ |
gyptest-all.py | 61 stdout=( variable
|
/external/chromium_org/tools/gyp/test/generator-output/ |
gyptest-symlink.py | 42 stdout="Hello from deeper.c\n") variable
|
/external/chromium_org/tools/gyp/test/variables/commands/ |
gyptest-commands-ignore-env.py | 23 expect = test.read('commands.gyp.ignore-env.stdout').replace('\r\n', '\n') 28 stdout=expect, ignore_line_numbers=True)
|
/external/valgrind/main/gdbserver_tests/ |
fork_chain.c | 11 fflush (stdout);
|
/system/extras/tests/memtest/ |
thumb.cpp | 12 fflush(stdout);
|
/external/chromium_org/build/mac/ |
tweak_info_plist.py | 36 """Runs a subprocess and waits for termination. Returns (stdout, returncode) 38 proc = subprocess.Popen(args, stdout=subprocess.PIPE) 39 (stdout, stderr) = proc.communicate() 40 return (stdout, proc.returncode) 48 proc = subprocess.Popen(args, stdout=subprocess.PIPE, 52 (stdout, stderr) = proc.communicate() 53 return (stdout, proc.returncode) 82 (stdout, retval1) = _GetOutput([VERSION_TOOL, '-f', VERSION_FILE, '-t', 84 full_version = stdout.rstrip() 86 (stdout, retval2) = _GetOutput([VERSION_TOOL, '-f', VERSION_FILE, '-t' [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
divtest.c | 14 BN_print_fp(stdout, a); 16 BN_print_fp(stdout, b); 18 fflush(stdout);
|
/external/chromium_org/tools/grit/grit/ |
grit_runner_unittest.py | 22 self.old_stdout = sys.stdout 23 sys.stdout = self.buf 26 sys.stdout = self.old_stdout
|
/external/openssl/crypto/bn/ |
divtest.c | 14 BN_print_fp(stdout, a); 16 BN_print_fp(stdout, b); 18 fflush(stdout);
|
/frameworks/wilhelm/tests/examples/ |
slesTestPlayFdPath.cpp | 41 fprintf(stdout, "%u error code encountered at line %d, exiting\n", result, line); 136 fprintf(stdout, "URI example: after Realize\n"); 145 fprintf(stdout, "Player configured\n"); 177 fprintf(stdout, "Stopping playback\n"); 196 fprintf(stdout, "OpenSL ES test %s: exercises SLPlayItf ", argv[0]); 197 fprintf(stdout, "and AudioPlayer with SLDataLocator_AndroidFD source / OutputMix sink\n"); 198 fprintf(stdout, "Plays the sound file designated by the given path, "); 199 fprintf(stdout, "starting at the specified offset, and using the specified length.\n"); 200 fprintf(stdout, "Omit the length of the file for it to be computed by the system.\n"); 203 fprintf(stdout, "Usage: \t%s path offsetInBytes [sizeInBytes]\n", argv[0]) [all...] |
/ndk/sources/host-tools/ndk-stack/ |
ndk-stack.c | 56 fprintf(stdout, "%s", _usage_str); 61 fprintf(stdout, "%s", _usage_str); 70 NdkCrashParser* parser = CreateNdkCrashParser(stdout, sym_path);
|
/external/chromium_org/chrome/test/pyautolib/ |
remote_host.py | 59 This method captures stdout and stderr for the duration of the method call, 71 old_stdout = sys.stdout 73 sys.stdout = stdout = cStringIO.StringIO() 88 sys.stdout = old_stdout 92 response = pickle.dumps((result, stdout.getvalue(), stderr.getvalue(),
|
/external/chromium_org/v8/tools/testrunner/server/ |
daemon.py | 26 stdout='/dev/null', stderr='/dev/null'): 28 self.stdout = stdout 63 sys.stdout.flush() 66 so = file(self.stdout, 'a+') 70 #os.dup2(so.fileno(), sys.stdout.fileno())
|
/external/compiler-rt/lib/asan/scripts/ |
symbolize.py | 39 readelf_pipe = subprocess.Popen([readelf, "-l", path], stdin=subprocess.PIPE, stdout=subprocess.PIPE) 40 for line in readelf_pipe.stdout: 80 stdin=subprocess.PIPE, stdout=subprocess.PIPE) 88 function_name = p.stdout.readline().rstrip() 89 file_name = p.stdout.readline().rstrip() 100 p.stdout.readline() 101 p.stdout.readline()
|
/external/libvorbis/examples/ |
encoder_example.c | 30 #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */ 62 /* this also lets the user set stdin and stdout */ 69 #ifdef _WIN32 /* We need to set stdin/stdout to binary mode. Damn windows. */ 75 _setmode( _fileno( stdout ), _O_BINARY ); 174 fwrite(og.header,1,og.header_len,stdout); 175 fwrite(og.body,1,og.body_len,stdout); 227 fwrite(og.header,1,og.header_len,stdout); 228 fwrite(og.body,1,og.body_len,stdout);
|
/development/scripts/ |
symbol.py | 37 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).stdout 201 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE) 211 symbol = child.stdout.readline().strip() 214 location = child.stdout.readline().strip() 228 child.stdout.close() 294 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE).stdout 333 process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE) 337 demangled_symbol = process.stdout.readline().strip( [all...] |
/external/chromium_org/tools/ |
nocompile_driver.py | 146 stdout from the compilation, and the compilation failed, then the test is 231 process = subprocess.Popen(cmdline, stdout=subprocess.PIPE, 266 def FailTest(resultfile, test, error, stdout=None, stderr=None): 273 stdout: The test's output to stdout. 278 if stdout and len(stdout) != 0: 279 resultfile.write('#error "%s stdout:"\n' % test['name']) 280 for line in stdout.split('\n'): 317 # Snap a copy of stdout and stderr into the test dictionary immediatel [all...] |
/external/chromium_org/tools/telemetry/telemetry/core/chrome/ |
cros_interface.py | 42 p = subprocess.Popen(args=args, cwd=cwd, stdout=devnull, 56 Captures and returns the command's stdout. 57 Prints the command's stderr to logger (which defaults to stdout). 62 p = subprocess.Popen(args=args, cwd=cwd, stdout=subprocess.PIPE, 64 stdout, stderr = p.communicate() 66 logging.debug(' > stdout=[%s], stderr=[%s]', stdout, stderr) 67 return stdout, stderr 149 stdout, stderr = GetAllCmdOutput( 154 return stdout, stder [all...] |
/frameworks/wilhelm/tests/mimeUri/ |
slesTestPlayStreamType.cpp | 39 fprintf(stdout, "%u error code encountered at line %d, exiting\n", result, line); 151 fprintf(stdout, "URI example: after Realize\n"); 160 fprintf(stdout, "Player configured\n"); 213 fprintf(stdout, "Stopping playback\n"); 240 fprintf(stdout, "OpenSL ES test %s: exercises SLPlayItf, SLAndroidConfigurationItf\n", 242 fprintf(stdout, "and AudioPlayer with SLDataLocator_URI source / OutputMix sink\n"); 243 fprintf(stdout, "Plays a sound on the specified android stream type\n"); 246 fprintf(stdout, "Usage: \t%s url stream_type\n", argv[0]); 247 fprintf(stdout, " where stream_type is one of the SL_ANDROID_STREAM_ constants.\n"); 248 fprintf(stdout, "Example: \"%s /sdcard/my.mp3 5\" \n", argv[0]) [all...] |