Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created June 7, 2019 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/13904ea3167fa692f8324df3321de3d9 to your computer and use it in GitHub Desktop.
Save Whateverable/13904ea3167fa692f8324df3321de3d9 to your computer and use it in GitHub Desktop.
greppable6
File Code
AZAWAWI/MagickWand
…/03-read-buffer.t :26:
# FILE *fopen(const char *path, const char *mode);
AZAWAWI/MagickWand
…/03-read-buffer.t :27:
my sub fopen(Str, Str) returns Pointer is native(&library) { * }
AZAWAWI/MagickWand
…/03-read-buffer.t :34:
my $fh = fopen($image, 'r');
CTILMES/DB-Pg
…/Native.pm6 :180:
sub fopen(Str $path, Str $mode --> Pointer)
CTILMES/DB-Pg
…/Native.pm6 :183:
method trace(Str $path) { self.PQtrace(fopen($path, 'a')) }
CTILMES/LibCurl
…/Easy.pm6 :387:
sub fopen(Str $path, Str $mode) returns Pointer is native { * }
CTILMES/LibCurl
…/Easy.pm6 :466:
$!download-fh = fopen($param, "wb");
CTILMES/LibCurl
…/Easy.pm6 :471:
$!upload-fh = fopen($param, "rb");
HMBRAND/Text-CSV
…/csv-php.php :7:
if (($handle = fopen ($filename, 'r')) !== FALSE) {
MSTEMLE/Fcntl
…/P6-Fcntl.c :1323:
FILE *outfile = fopen("Fcntl.pm", "a");
TITSUKI/Algorithm-LibSVM
…/svm.cpp :2649:
FILE *fp = fopen(model_file_name,"w");
TITSUKI/Algorithm-LibSVM
…/svm.cpp :2889:
FILE *fp = fopen(model_file_name,"rb");
Altai-man/perl6-Compress-Bzip2-Raw
…/Raw.pm6 :90:
our sub fopen(Str $filename, Str $mode) returns OpaquePointer is native(Str) is export { * }
Altai-man/perl6-Compress-Bzip2-Raw
…/Raw.pm6 :96:
my $handle = fopen($filename ~ ".bz2", "wb");
Altai-man/perl6-Compress-Bzip2-Raw
…/Raw.pm6 :103:
my $handle = fopen($filename, "rb");
Altai-man/perl6-Compress-Bzip2-Raw
…/01_sanity.t :14:
my $handle = fopen("/tmp/test.bz2", "wb");
Altai-man/perl6-Compress-Bzip2-Raw
…/01_sanity.t :31:
$handle = fopen("/tmp/test.bz2", "rb");
CurtTilmes/perl6-libcurl
…/Easy.pm6 :387:
sub fopen(Str $path, Str $mode) returns Pointer is native { * }
CurtTilmes/perl6-libcurl
…/Easy.pm6 :466:
$!download-fh = fopen($param, "wb");
CurtTilmes/perl6-libcurl
…/Easy.pm6 :471:
$!upload-fh = fopen($param, "rb");
Tux/CSV
…/csv-php.php :7:
if (($handle = fopen ($filename, 'r')) !== FALSE) {
andydude/p6-c-parser
…/zmq.pp.c :114:
extern FILE *fopen (const char *__restrict __filename, const char *__restrict __modes) ;
azawawi/perl6-gtk-scintilla
…/ScintillaDoc.html :4828:
"fclose?2 fopen" displays image 2 before the string "fclose" and no image before "fopen".
azawawi/perl6-libzip
…/NativeCall.pm6 :27:
# flags for zip_name_locate, zip_fopen, zip_stat, ...
azawawi/perl6-libzip
…/NativeCall.pm6 :308:
#ZIP_EXTERN struct zip_file *zip_fopen(struct zip *, const char *, int);
azawawi/perl6-libzip
…/NativeCall.pm6 :309:
sub zip_fopen(Pointer[zip] # zip*
azawawi/perl6-libzip
…/NativeCall.pm6 :315:
#ZIP_EXTERN struct zip_file *zip_fopen_encrypted(struct zip *, const char *,
azawawi/perl6-libzip
…/NativeCall.pm6 :317:
sub zip_fopen_encrypted(Pointer[zip] # zip*
azawawi/perl6-libzip
…/NativeCall.pm6 :324:
#ZIP_EXTERN struct zip_file *zip_fopen_index(struct zip *, zip_int64, int);
azawawi/perl6-libzip
…/NativeCall.pm6 :325:
sub zip_fopen_index(Pointer[zip] # zip*
azawawi/perl6-libzip
…/NativeCall.pm6 :331:
#ZIP_EXTERN struct zip_file *zip_fopen_index_encrypted(struct zip *,
azawawi/perl6-libzip
…/NativeCall.pm6 :334:
sub zip_fopen_index_encrypted(Pointer[zip] # zip*
azawawi/perl6-net-curl
…/curlgtk.c :52:
outfile = fopen("test.curl", "w");
azawawi/perl6-net-curl
…/fileupload.c :35:
fd = fopen("debugit", "rb"); /* open file to upload */
azawawi/perl6-net-curl
…/fopen.c :4:
* URL reads it supports fopen(), fread(), fgets(), feof(), fclose(),
azawawi/perl6-net-curl
…/fopen.c :8:
* Using this code you can replace your program's fopen() with url_fopen()
azawawi/perl6-net-curl
…/fopen.c :11:
* fopened) will drop back to using the underlying clib implementations
azawawi/perl6-net-curl
…/fopen.c :79:
URL_FILE *url_fopen(const char *url,const char *operation);
azawawi/perl6-net-curl
…/fopen.c :210:
URL_FILE *url_fopen(const char *url,const char *operation)
azawawi/perl6-net-curl
…/fopen.c :213:
basicly use the real fopen() for standard files */
azawawi/perl6-net-curl
…/fopen.c :224:
if((file->handle.file=fopen(url,operation)))
azawawi/perl6-net-curl
…/fopen.c :449:
outf=fopen("fgets.test","w+");
azawawi/perl6-net-curl
…/fopen.c :455:
handle = url_fopen(url, "r");
azawawi/perl6-net-curl
…/fopen.c :457:
printf("couldn't url_fopen() %s\n", url);
azawawi/perl6-net-curl
…/fopen.c :473:
outf=fopen("fread.test","w+");
azawawi/perl6-net-curl
…/fopen.c :479:
handle = url_fopen("testfile", "r");
azawawi/perl6-net-curl
…/fopen.c :481:
printf("couldn't url_fopen() testfile\n");
azawawi/perl6-net-curl
…/fopen.c :497:
outf=fopen("rewind.test","w+");
azawawi/perl6-net-curl
…/fopen.c :503:
handle = url_fopen("testfile", "r");
azawawi/perl6-net-curl
…/fopen.c :505:
printf("couldn't url_fopen() testfile\n");
azawawi/perl6-net-curl
…/ftp-wildcard.c :118:
data->output = fopen(finfo->filename, "w");
azawawi/perl6-net-curl
…/ftpget.c :43:
out->stream=fopen(out->filename, "wb");
azawawi/perl6-net-curl
…/ftpgetresp.c :48:
ftpfile = fopen("ftp-list", "wb"); /* b is binary, needed on win32 */
azawawi/perl6-net-curl
…/ftpgetresp.c :51:
respfile = fopen("ftp-responses", "wb"); /* b is binary, needed on win32 */
azawawi/perl6-net-curl
…/ftpsget.c :45:
out->stream=fopen(out->filename, "wb");
azawawi/perl6-net-curl
…/ftpupload.c :89:
hd_src = fopen(LOCAL_FILE, "rb");
azawawi/perl6-net-curl
…/ftpuploadresume.c :91:
f = fopen(localpath, "rb");
azawawi/perl6-net-curl
…/httpput.c :82:
hd_src = fopen(file, "rb");
azawawi/perl6-net-curl
…/rtsp.c :86:
FILE *sdp_fp = fopen(sdp_filename, "wt");
azawawi/perl6-net-curl
…/rtsp.c :159:
FILE *sdp_fp = fopen(sdp_filename, "rt");
azawawi/perl6-net-curl
…/sepheaders.c :57:
headerfile = fopen(headerfilename,"w");
azawawi/perl6-net-curl
…/sepheaders.c :62:
bodyfile = fopen(bodyfilename,"w");
azawawi/perl6-net-curl
…/sftpget.c :48:
out->stream=fopen(out->filename, "wb");
azawawi/perl6-net-curl
…/simplessl.c :69:
headerfile = fopen("dumpit", "w");
azawawi/perl6-net-curl
…/smooth-gtk-thread.c :88:
outfile = fopen(urls[j], "w");
azawawi/perl6-net-curl
…/smooth-gtk-thread.c :89:
/* printf("fopen\n"); */
azawawi/perl6-net-curl
…/synctime.c :206:
outfile = fopen(OutFileName, "wb");
azawawi/perl6-net-curl
…/url2file.c :63:
pagefile = fopen(pagefilename, "wb");
cygx/p6-image-png-inflated
…/pngcheck.c :689:
} else if ((fp = fopen(fname, "rb")) == NULL) {
cygx/p6-image-png-inflated
…/pngcheck.c :4754:
fpOut = fopen(name, "wb");
cygx/p6-image-rgba-text
…/pngcheck.c :689:
} else if ((fp = fopen(fname, "rb")) == NULL) {
cygx/p6-image-rgba-text
…/pngcheck.c :4754:
fpOut = fopen(name, "wb");
cygx/p6-tinycc-resources-win64
…/stdio_s.h :101:
_CRTIMP errno_t __cdecl _wfopen_s(FILE **_File,const wchar_t *_Filename,const wchar_t *_Mode);
cygx/p6-tinycc-resources-win64
…/tchar_s.h :90:
#define _tfopen_s _wfopen_s
cygx/p6-tinycc-resources-win64
…/tchar_s.h :170:
#define _tfopen_s fopen_s
cygx/p6-tinycc-resources-win64
…/wchar_s.h :58:
_CRTIMP errno_t __cdecl _wfopen_s(FILE **_File,const wchar_t *_Filename,const wchar_t *_Mode);
cygx/p6-tinycc-resources-win64
…/stdio.h :179:
FILE *__cdecl fopen(const char *_Filename,const char *_Mode);
cygx/p6-tinycc-resources-win64
…/stdio.h :180:
FILE *fopen64(const char *filename,const char *mode);
cygx/p6-tinycc-resources-win64
…/stdio.h :347:
_CRTIMP FILE *__cdecl _wfopen(const wchar_t *_Filename,const wchar_t *_Mode);
cygx/p6-tinycc-resources-win64
…/tcclib.h :29:
FILE *fopen(const char *path, const char *mode);
cygx/p6-tinycc-resources-win64
…/tchar.h :341:
#define _tfopen _wfopen
cygx/p6-tinycc-resources-win64
…/tchar.h :679:
#define _tfopen fopen
cygx/p6-tinycc-resources-win64
…/wchar.h :647:
_CRTIMP FILE *__cdecl _wfopen(const wchar_t *_Filename,const wchar_t *_Mode);
cygx/p6-tinycc-resources-win64
…/msvcrt.def :1067:
_wfopen
cygx/p6-tinycc-resources-win64
…/msvcrt.def :1068:
_wfopen_s
cygx/p6-tinycc-resources-win64
…/msvcrt.def :1185:
fopen
cygx/p6-tinycc-resources-win64
…/msvcrt.def :1186:
fopen_s
dagurval/perl6-gd-raw
…/README.md :11:
my $fh = fopen("my-image.png", "rb");
dagurval/perl6-gd-raw
…/README.pod :13:
my $fh = fopen("my-image.png", "rb");
dagurval/perl6-gd-raw
…/Raw.pm :139:
sub fopen( Str $filename, Str $mode )
dagurval/perl6-gd-raw
…/Raw.pm :481:
my $fh = fopen("my-image.png", "rb");
dagurval/perl6-gd-raw
…/01-create-and-load.t :21:
my $fh = fopen($tmp-path.Str, "wb");
dagurval/perl6-gd-raw
…/01-create-and-load.t :28:
$fh = fopen($tmp-path.Str, "rb");
dagurval/perl6-gd-raw
…/gdtest.pm6 :15:
my $fp = fopen($filename, "rb");
dagurval/perl6-gd-raw
…/gdtest.pm6 :194:
my $afh = fopen($actual-path, "wb");
dagurval/perl6-gd-raw
…/gdtest.pm6 :196:
my $dfh = fopen($diff-path, "wb");
dagurval/perl6-gd-raw
…/bug00067.t :11:
my $fp = fopen($path, "rb")
dagurval/perl6-gd-raw
…/bug00067.t :12:
or die "fopen";
dagurval/perl6-gd-raw
…/php_bug_64898.t :12:
my $fp = fopen($path, "rb")
dagurval/perl6-image-resize
…/Resize.pm6 :91:
my $fh = fopen($!img-path, "rb")
dagurval/perl6-image-resize
…/Resize.pm6 :115:
my $imgh = fopen($dst-path, "wb")
dagurval/perl6-image-resize
…/common.pm6 :5:
my $fh = fopen($path, "rb")
gabrielash/perl6-zmq
…/hello-long.c :81:
FILE *h = fopen( "dump", "w" );
hartenfels/Text-Markdown-Discount
…/README.md :84:
Will `fail` with an #X::Text::Markdown::Discount::File if it can't `fopen` the given `$file` and `warn` if it can't `fclose` it.
hartenfels/Text-Markdown-Discount
…/README.md :166:
Thrown when an `fopen`, `fdopen` or `fclose` fails. The latter will only be a warning.
hartenfels/Text-Markdown-Discount
…/Discount.pm6 :41:
sub fopen(Str, Str --> FILE)
hartenfels/Text-Markdown-Discount
…/Discount.pm6 :54:
fopen($file, $mode) or fail XFile.new(:op("fopen '$mode'"),
hartenfels/Text-Markdown-Discount
…/Discount.pm6 :376:
Will C<fail> with an L<#X::Text::Markdown::Discount::File> if it can't C<fopen>
hartenfels/Text-Markdown-Discount
…/Discount.pm6 :463:
Thrown when an C<fopen>, C<fdopen> or C<fclose> fails. The latter will only be
hoelzro/p6-linenoise
…/linenoise.c :375:
lndebug_fp = fopen("/tmp/lndebug.txt","a"); \
hoelzro/p6-linenoise
…/linenoise.c :1489:
FILE *fp = fopen(filename,"wb");
hoelzro/p6-linenoise
…/linenoise.c :1491:
FILE *fp = fopen(filename,"w");
hoelzro/p6-linenoise
…/linenoise.c :1508:
FILE *fp = fopen(filename,"r");
jpve/perl6-net-pcap
…/TODO.md :19:
* `pcap_fopen_offline`
madcapjake/p6-myhtml
…/Raw.pm6 :26:
sub fopen(Str, Str) returns FILE is native { * }
madcapjake/p6-myhtml
…/Raw.pm6 :33:
method path(Str $path) { fopen($path, "w+") }
manchicken/perl6-Fcntl
…/P6-Fcntl.c :1323:
FILE *outfile = fopen("Fcntl.pm", "a");
perl6-community-modules/perl6-GD
…/GD.pm :9:
sub fopen(Str, Str)
perl6-community-modules/perl6-GD
…/GD.pm :16:
fopen($filename, $mode);
spebern/Parser-FreeXL-Native
…/configure :3584:
FILE *f = fopen ("conftest.out", "w");
spebern/Parser-FreeXL-Native
…/freexl.c :4023:
workbook->xls = fopen (path, "rb");
taboege/p6-SAT-Solver-MiniSAT
…/Main.cc :97:
FILE* res = (argc >= 3) ? fopen(argv[2], "wb") : NULL;
taboege/p6-SAT-Solver-MiniSAT
…/Solver.cc :941:
FILE* f = fopen(file, "wr");
taboege/p6-SAT-Solver-MiniSAT
…/Main.cc :101:
FILE* res = (argc >= 3) ? fopen(argv[2], "wb") : NULL;
taboege/p6-SAT-Solver-MiniSAT
…/System.cc :39:
FILE* in = fopen(name, "rb");
taboege/p6-SAT-Solver-MiniSAT
…/System.cc :56:
FILE* in = fopen(name, "rb");
tony-o/perl6-libyaml
…/yamlwrap.c :34:
input = fopen(file, "rb");
yaml/yaml-libyaml-perl6
…/LibYAML.pm6 :332:
sub fopen(Str, Str) returns LibYAML::FILEptr is native {*}
yaml/yaml-libyaml-perl6
…/LibYAML.pm6 :337:
fopen($filename, $filemode) or die "Error opening $filename";
zengargoyle/p6-Algorithm-Trie-libdatrie
…/trie.c :166:
trie_file = fopen (path, "rb");
zengargoyle/p6-Algorithm-Trie-libdatrie
…/trie.c :252:
file = fopen (path, "wb+");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment