HomeSort by relevance Sort by last modified time
    Searched refs:stdin (Results 226 - 250 of 485) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/tools/
ftfy.sh 56 NEW_CHANGEID=I$(echo $NEW_CHANGEID | git hash-object --stdin)
  /external/lldb/examples/scripting/
dictionary.c 174 while (!done && fgets (buffer, sizeof(buffer), stdin))
  /external/mesa3d/src/gallium/tools/trace/
format.py 125 if stream is sys.stdin:
  /external/chromium_org/third_party/cython/src/Cython/Includes/libc/
stdio.pxd 11 cdef FILE *stdin
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
TwoWayCommunication.cc 74 EXPECT_TRUE(fgets(myStr, 10, stdin) != NULL);
78 EXPECT_TRUE(fgets(myStr, 10, stdin) != NULL);
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
eclipse.py 96 proc = subprocess.Popen(args=command, stdin=subprocess.PIPE,
234 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /external/chromium_org/v8/samples/
lineprocessor.cc 225 while (!feof(stdin)) {
370 res = fgets(buffer, kBufferSize, stdin);
  /external/chromium_org/v8/tools/testrunner/server/
main.py 47 def __init__(self, pidfile, root, stdin="/dev/null",
49 super(Server, self).__init__(pidfile, stdin, stdout, stderr)
  /external/nanopb-c/tests/alltypes/
decode_alltypes.c 199 SET_BINARY_MODE(stdin);
200 count = fread(buffer, 1, sizeof(buffer), stdin);
  /external/nanopb-c/tests/alltypes_pointer/
decode_alltypes_pointer.c 157 SET_BINARY_MODE(stdin);
158 count = fread(buffer, 1, sizeof(buffer), stdin);
  /external/nanopb-c/tests/backwards_compatibility/
decode_legacy.c 188 SET_BINARY_MODE(stdin);
189 count = fread(buffer, 1, sizeof(buffer), stdin);
  /external/openssl/crypto/bio/
bss_file.c 60 * 03-Dec-1997 rdenny@dc3.com Fix bug preventing use of stdin/stdout
313 if ((size_t)ptr >= (size_t)stdin &&
314 (size_t)ptr < (size_t)(stdin+_IOB_ENTRIES))
342 /* Dangerous to set stdin/stdout to raw (unless redirected) */
  /external/bzip2/
bzip2.c 189 /*-- source modes; F==file, I==stdin, O==stdout --*/
532 if (zStream != stdin) fclose(zStream);
625 if (zStream != stdin) fclose(zStream);
1147 copyFileName ( inName, (Char*)"(stdin)" );
    [all...]
  /external/chromium_org/remoting/host/linux/
linux_me2me_host.py 449 # reading from stdin. If this code runs as a shell background job in a
450 # terminal, any reading from stdin causes the job to be suspended.
459 stdin=open(os.devnull, "r"),
495 stdin=subprocess.PIPE)
499 self.host_proc.stdin.write(json.dumps(host_config.data))
500 self.host_proc.stdin.close()
767 # Copy the file-descriptors to create new stdin, stdout and stderr. Note
769 # stdin, stdout and stderr, detaching from the terminal.
770 os.dup2(devnull_fd, sys.stdin.fileno())
793 host processes via stdin, they can't reload it, so terminate them. They wil
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
PrettyPatch.rb 731 stdin, stdout, stderr = *Open3.popen3(cmd)
733 stdin.puts(patch)
734 stdin.close
742 stdin.close unless stdin.closed?
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-top.c 310 if (getline(&buf, &dummy, stdin) < 0)
352 if (getline(&buf, &dummy, stdin) < 0)
455 c = getc(stdin);
609 getc(stdin);
625 c = getc(stdin);
  /external/lldb/test/pexpect-2.4/examples/
cgishell.cgi 154 def daemonize (stdin=None, stdout=None, stderr=None, daemon_pid_filename=None):
156 The arguments stdin, stdout, stderr allow you to set the filename that the daemon reads and writes to.
170 if stdin is None: stdin = DEVNULL
219 si = open(stdin, 'r')
222 os.dup2(si.fileno(), sys.stdin.fileno())
  /external/chromium_org/third_party/codesighs/
codesighs.c 58 ** Default is stdin.
117 static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin is default."};
618 outOptions->mInput = stdin;
619 outOptions->mInputName = strdup("stdin");
627 ERROR_REPORT(retval, "stdin/stdout", "Unable to strdup.");
693 if(NULL != outOptions->mInput && stdin != outOptions->mInput)
974 if(NULL != inOptions->mInput && stdin != inOptions->mInput)
    [all...]
msdump2symdb.c 58 ** Default is stdin.
91 static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin is default."};
881 outOptions->mInput = stdin;
882 outOptions->mInputName = strdup("stdin");
889 ERROR_REPORT(retval, "stdin/stdout", "Unable to strdup.");
955 if(NULL != outOptions->mInput && stdin != outOptions->mInput)
    [all...]
  /build/tools/releasetools/
check_target_files_signatures 97 stdin=subprocess.PIPE,
156 stdin=subprocess.PIPE,
  /dalvik/tools/hprof-conv/
HprofConv.c 727 in = fopen_or_default(arg, "rb", stdin);
747 fprintf(stderr, "Specify '-' for either or both files to use stdin/stdout.\n");
762 if (in != stdin)
  /external/chromium_org/third_party/icu/source/tools/toolutil/
ppucd.cpp 68 file=stdin;
84 if(file!=stdin) {
  /external/chromium_org/third_party/skia/third_party/lua/src/
lua.c 52 #define lua_stdin_is_tty() _isatty(_fileno(stdin))
54 #define lua_stdin_is_tty() 1 /* assume stdin is a tty */
79 fgets(b, LUA_MAXINPUT, stdin) != NULL) /* get line */
123 " - stop handling options and execute stdin\n"
289 status = luaL_loadbuffer(L, line, l, "=stdin");
333 fname = NULL; /* stdin */
473 else dofile(L, NULL); /* executes stdin as a file */
  /external/icu/icu4c/source/tools/toolutil/
ppucd.cpp 68 file=stdin;
84 if(file!=stdin) {
  /external/libmtp/examples/
sendtr.c 70 if ( fgets(buffer, bufsz, stdin) == NULL ) {
71 if (ferror(stdin)) {
74 fprintf(stderr, "EOF on stdin\n");

Completed in 2796 milliseconds

1 2 3 4 5 6 7 8 91011>>