Searched refs:fout (Results 1 – 3 of 3) sorted by relevance
/PHP-7.1/ext/standard/tests/filters/ |
H A D | bug22538.phpt | 5 function my_stream_copy_to_stream($fin, $fout) { 7 fwrite($fout, fread($fin, 4096)); 28 $fout = fopen($path2, "w") or die("Can not open $path2\n");; 29 stream_filter_append($fout, "string.rot13"); 30 my_stream_copy_to_stream($fin, $fout); 31 fclose($fout);
|
/PHP-7.1/ext/zip/lib/ |
H A D | zip_source_filep.c | 81 FILE *fout; member 149 ctx->fout = NULL; in _zip_source_file_or_p() 214 ctx->fout = tfp; in create_temp_output() 243 if (fclose(ctx->fout) < 0) { in read_file() 244 ctx->fout = NULL; in read_file() 247 ctx->fout = NULL; in read_file() 327 if (ctx->fout) { in read_file() 328 fclose(ctx->fout); in read_file() 329 ctx->fout = NULL; in read_file() 450 off_t ret = ftello(ctx->fout); in read_file() [all …]
|
/PHP-7.1/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 55457 int fout = 0; /* VFS flags returned by xOpen() */ 55458 rc = sqlite3OsOpen(pVfs, pPager->zFilename, pPager->fd, vfsFlags, &fout); 55461 memJM = (fout&SQLITE_OPEN_MEMORY)!=0; 55463 readOnly = (fout&SQLITE_OPEN_READONLY)!=0; 55839 int fout = 0; 55842 rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &fout); 55844 if( rc==SQLITE_OK && fout&SQLITE_OPEN_READONLY ){
|
Completed in 504 milliseconds