HomeSort by relevance Sort by last modified time
    Searched defs:err_file (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/libsrtp/srtp/crypto/kernel/
err.c 67 /* err_file is the FILE to which errors are reported */
69 static FILE *err_file = NULL; variable
83 err_file = stdout;
86 err_file = fopen(ERR_REPORTING_FILE, "w");
87 if (err_file == NULL)
101 if (err_file != NULL) {
102 vfprintf(err_file, format, args);
103 /* fprintf(err_file, "\n"); */
  /external/srtp/crypto/kernel/
err.c 67 /* err_file is the FILE to which errors are reported */
69 static FILE *err_file = NULL; variable
83 err_file = stdout;
86 err_file = fopen(ERR_REPORTING_FILE, "w");
87 if (err_file == NULL)
101 if (err_file != NULL) {
102 vfprintf(err_file, format, args);
103 /* fprintf(err_file, "\n"); */
  /external/openssl/crypto/err/
err.h 155 const char *err_file[ERR_NUM_ERRORS]; member in struct:err_state_st
  /external/openssl/include/openssl/
err.h 155 const char *err_file[ERR_NUM_ERRORS]; member in struct:err_state_st
  /external/lldb/source/Core/
Debugger.cpp 754 File &err_file = GetErrorFile(); local
756 err_file.Printf ("error: failed to main input read thread: %s", error.AsCString() ? error.AsCString() : "unkown error");
780 File &err_file = GetErrorFile(); local
781 err_file.SetStream (fh, tranfer_ownership);
782 if (err_file.IsValid() == false)
783 err_file.SetStream (stderr, false);
    [all...]

Completed in 1374 milliseconds