HomeSort by relevance Sort by last modified time
    Searched refs:FILE (Results 2051 - 2075 of 2555) sorted by null

<<81828384858687888990>>

  /external/openssl/crypto/
crypto.h 418 void CRYPTO_lock(int mode, int type,const char *file,int line);
420 const char *file,int line));
421 void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
424 const char *file, int line));
426 const char *file,int line);
450 int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
456 void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*dyn_create_function)(const char *file, int line));
457 void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function)(int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));
458 void CRYPTO_set_dynlock_destroy_callback(void (*dyn_destroy_function)(struct CRYPTO_dynlock_value *l, const char *file, int line));
459 struct CRYPTO_dynlock_value *(*CRYPTO_get_dynlock_create_callback(void))(const char *file,int line)
    [all...]
mem_dbg.c 154 const char *file; member in struct:app_mem_info_st
176 const char *file; member in struct:mem_st
397 int CRYPTO_push_info_(const char *info, const char *file, int line)
422 ami->file=file;
481 void CRYPTO_dbg_malloc(void *addr, int num, const char *file, int line,
517 m->file=file;
606 const char *file, int line, int before_p)
611 fprintf(stderr, "LEVITTE_DEBUG_MEM: --> CRYPTO_dbg_malloc(addr1 = %p, addr2 = %p, num = %d, file = \"%s\", line = %d, before_p = %d)\n"
    [all...]
  /external/openssl/crypto/rsa/
rsa.h 337 int RSA_print_fp(FILE *fp, const RSA *r,int offset);
  /external/openssl/include/openssl/
crypto.h 418 void CRYPTO_lock(int mode, int type,const char *file,int line);
420 const char *file,int line));
421 void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
424 const char *file, int line));
426 const char *file,int line);
450 int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
456 void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*dyn_create_function)(const char *file, int line));
457 void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function)(int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));
458 void CRYPTO_set_dynlock_destroy_callback(void (*dyn_destroy_function)(struct CRYPTO_dynlock_value *l, const char *file, int line));
459 struct CRYPTO_dynlock_value *(*CRYPTO_get_dynlock_create_callback(void))(const char *file,int line)
    [all...]
rsa.h 337 int RSA_print_fp(FILE *fp, const RSA *r,int offset);
  /external/ppp/pppd/plugins/radius/
avpair.c 11 * See the file COPYRIGHT for the respective terms and conditions.
12 * If the file is missing contact me at lf@elemental.net
768 * Purpose: get a sequence of attribute value pairs from the file input
773 VALUE_PAIR *rc_avpair_readin(FILE *input)
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/linux/
SDL_syscdrom.c 189 FILE *mntfp;
  /external/qemu/distrib/sdl-1.2.12/src/main/macos/
SDL_main.c 23 /* This file takes care of command line argument parsing, and stdio redirection
132 FILE *file; local
140 file = fopen(STDOUT_FILE, "rb");
141 if ( file ) {
142 empty = (fgetc(file) == EOF) ? 1 : 0;
143 fclose(file);
148 file = fopen(STDERR_FILE, "rb");
149 if ( file ) {
150 empty = (fgetc(file) == EOF) ? 1 : 0
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbvideo.c 110 /* You can generate these timings from your XF86Config file using
273 static int read_fbmodes_line(FILE*f, char* line, int length)
306 static int read_fbmodes_mode(FILE *f, struct fb_var_screeninfo *vinfo)
494 FILE *modesdb;
801 FILE *modesdb;
807 /* Parse the mode definition file */
    [all...]
  /external/qemu/target-arm/
cpu.h 394 void arm_cpu_list(FILE *f, fprintf_function cpu_fprintf);
  /external/qemu-pc-bios/bochs/bios/
biossums.c 93 FILE* stream;
103 printf("Error. Need a file-name as an argument.\n");
  /external/quake/quake/src/QW/server/
sv_ccmds.c 101 Con_Printf ("File logging off.\n");
127 Con_Printf ("Frag file logging off.\n");
306 FILE *f;
803 break; // file doesn't exist
807 Con_Printf ("Snap: Couldn't create a file, clean some out.\n");
  /external/sonivox/arm-wt-22k/misc/
eas_host.c 3 * File:
7 * This file contains the host wrapper functions for stdio, stdlib, etc.
9 * Modify this file to suit the needs of your particular system.
12 * a MIDI type 1 file that can be played. To maintain efficiency, data
16 * EAS_HW_FILE is a structure to support local file buffering. It
17 * comprises the OS File handle, some data related to the local file
23 * If the file system supports duplicate file handles and buffering,
25 * native file I/O routines
233 EAS_HW_FILE *file; local
    [all...]
  /external/stlport/src/details/
fstream_win32io.cpp 75 // Return true if the file handle isn't a directory.
80 // Number of characters in the file.
113 char osfile; // file handle flags
134 //the file will be considered as open in binary mode with no append attribute
177 for (FILE *fp = &_iob[0]; fp < &_iob[_NFILE]; fp++) {
212 // Return the size of the file. This is a wrapper for stat.
296 // access. On Unix, file-creation system calls always clear
329 // Associated the filebuf with a file descriptor pointing to an already-
330 // open file. Mode is set to be consistent with the way that the file
    [all...]
  /external/tcpdump/
print-atalk.c 545 FILE *fp;
549 * number to name map file.
  /external/v8/samples/
shell.cc 135 // function is called. This function loads the content of the file named in
141 v8::String::Utf8Value file(args[0]);
142 if (*file == NULL) {
143 return v8::ThrowException(v8::String::New("Error loading file"));
145 v8::Handle<v8::String> source = ReadFile(*file);
147 return v8::ThrowException(v8::String::New("Error loading file"));
155 // JavaScript file.
159 v8::String::Utf8Value file(args[i]);
160 if (*file == NULL) {
161 return v8::ThrowException(v8::String::New("Error loading file"));
195 FILE* file = fopen(name, "rb"); local
    [all...]
  /external/v8/src/
d8.cc 226 String::Utf8Value file(args[0]);
227 if (*file == NULL) {
228 return ThrowException(String::New("Error loading file"));
230 Handle<String> source = ReadFile(*file);
232 return ThrowException(String::New("Error loading file"));
271 String::Utf8Value file(args[i]);
272 if (*file == NULL) {
273 return ThrowException(String::New("Error loading file"));
275 Handle<String> source = ReadFile(*file);
277 return ThrowException(String::New("Error loading file"));
1010 FILE* file = FOpen(name, "rb"); local
    [all...]
  /external/webkit/Source/WebCore/xml/
XSLTProcessorLibxslt.cpp 2 * This file is part of the XSL implementation.
18 * along with this library; see the file COPYING.LIB. If not, write to
60 SOFT_LINK(libxslt, xsltApplyStylesheetUser, xmlDocPtr, (xsltStylesheetPtr style, xmlDocPtr doc, const char** params, const char* output, FILE* profile, xsltTransformContextPtr userCtxt), (style, doc, params, output, profile, userCtxt))
102 console->addMessage(XMLMessageSource, LogMessageType, level, error->message, error->line, error->file);
  /external/webkit/Tools/android/flex-2.5.4a/
misc.c 385 FILE *output_file;
771 /* skelout - write out one section of the skeleton file
811 _( "bad line in skeleton file" ) );
818 /* Skeleton file reads include final
parse.y 44 /* AIX requires this to be the first thing in the file. What a piece. */
803 line_directive_out( (FILE *) 0, 1 );
  /external/webrtc/src/modules/audio_processing/test/
unit_test.cc 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
44 // file. This is the typical case. When the file should be updated, it can
70 FILE* far_file_;
71 FILE* near_file_;
108 ASSERT_TRUE(far_file_ != NULL) << "Could not open input file " <<
112 ASSERT_TRUE(near_file_ != NULL) << "Could not open input file " <<
215 FILE* file = fopen(filename.c_str(), "wb") local
234 FILE* file = fopen(filename.c_str(), "rb"); local
    [all...]
  /external/zlib/contrib/untgz/
untgz.c 2 * untgz.c -- Display contents and extract files from a gzip'd TAR file
42 #define REGTYPE '0' /* regular file */
43 #define AREGTYPE '\0' /* regular file */
54 #define GNUTYPE_DUMPDIR 'D' /* file names from dumped directory */
56 #define GNUTYPE_LONGNAME 'L' /* long file name */
57 #define GNUTYPE_MULTIVOL 'M' /* continuation of file from another volume */
58 #define GNUTYPE_NAMES 'N' /* file name that does not fit into main hdr */
59 #define GNUTYPE_SPARSE 'S' /* sparse file */
129 /* return the file name of the TGZ archive */
204 /* set file time *
    [all...]
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_FileCommon.c 5 * you may not use this file except in compliance with the License.
18 * @file M4OSA_FileCommon.c
19 * @brief File common for Android
20 * @note This file implements functions used by both the file writer
21 * and file reader.
52 * @param context: (OUT) Context of the core file reader
53 * @param url: (IN) URL of the input file
54 * @param fileModeAccess: (IN) File mode access
59 * file
    [all...]
  /frameworks/av/media/libstagefright/yuv/
YUVImage.cpp 5 * you may not use this file except in compliance with the License.
387 FILE *fp = fopen(filename, "w");
  /frameworks/base/tools/aapt/
Package.cpp 40 const sp<AaptGroup>& group, const sp<AaptFile>& file);
68 * If the file already exists, fail unless "update" or "force" is set.
90 fprintf(stderr, "ERROR: '%s' exists and is not a regular file\n", outputFile.string());
103 fprintf(stderr, "ERROR: unable to open '%s' as Zip file for writing\n",
121 printf("Generated %d file%s\n", count, (count==1) ? "" : "s");
133 printf("Included %d file%s from jar/zip files.\n", count, (count==1) ? "" : "s");
159 printf("Removed %d file%s\n", removed, (removed==1) ? "" : "s");
174 delete zip; // close the file so we can remove it in Win32
181 // If we've been asked to generate a dependency file for the .ap_ package,
184 // The dependency file gets output to the same director
    [all...]

Completed in 2254 milliseconds

<<81828384858687888990>>