Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:zopen
(Results
1 - 2
of
2
) sorted by relevance
/third_party/toybox/toys/pending/
H
A
D
man.c
126
static int
zopen
(char *s)
in zopen()
function
157
while ((fd == -1) && *suf) strcpy(s + len - dotnum, *suf++), fd =
zopen
(s);
in tryfile()
158
// Recheck suf in
zopen
, because for x.1.gz name here it is "".
in tryfile()
186
if (-1 != (fd =
zopen
(f))) {
in man_main()
201
if (strchr(*toys.optargs, '/')) fd =
zopen
(*toys.optargs);
in man_main()
/third_party/python/Lib/test/
H
A
D
test_zipfile.py
2637
with zipf.open('ones') as
zopen
:
2638
self.assertEqual(
zopen
.read(), b'111')
2639
with zipf.open('twos') as
zopen
:
2640
self.assertEqual(
zopen
.read(), b'222')
2658
with zipf.open('ones') as
zopen
:
2659
self.assertEqual(
zopen
.read(), b'111')
2660
with zipf.open('twos') as
zopen
:
2661
self.assertEqual(
zopen
.read(), b'222')
2670
with zipf.open('ones', 'w') as
zopen
:
2671
zopen
[all...]
Completed in 5 milliseconds