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:path_bytes
(Results
1 - 4
of
4
) sorted by relevance
/third_party/rust/crates/rustix/src/backend/libc/net/
H
A
D
read_sockaddr.rs
145
// Trim off unused bytes from the end of `
path_bytes
`.
146
let
path_bytes
= if cfg!(target_os = "freebsd") {
165
SocketAddrUnix::new(
path_bytes
.iter().map(|c| *c as u8).collect::<Vec<u8>>())
239
let
path_bytes
= &decode.sun_path[..len - 1 - offsetof_sun_path];
in inner_read_sockaddr_os()
245
let
path_bytes
= &
path_bytes
[..
path_bytes
.iter().position(|b| *b == 0).unwrap()];
in inner_read_sockaddr_os()
248
SocketAddrUnix::new(
path_bytes
.iter().map(|c| *c as u8).collect::<Vec<u8>>())
in inner_read_sockaddr_os()
/third_party/python/Python/
H
A
D
fileutils.c
1695
const char *
path_bytes
;
in _Py_fopen_obj()
local
1701
path_bytes
= PyBytes_AS_STRING(bytes);
in _Py_fopen_obj()
1710
f = fopen(
path_bytes
, mode);
in _Py_fopen_obj()
/third_party/python/Lib/test/
H
A
D
test_os.py
4370
path_bytes
= os.fsencode(self.path)
4371
entries = list(os.scandir(
path_bytes
))
4383
path_bytes
= cls(os.fsencode(self.path))
4385
entries = list(os.scandir(
path_bytes
))
/third_party/python/Objects/
H
A
D
unicodeobject.c
4126
PyObject *
path_bytes
= NULL;
in PyUnicode_FSDecoder()
local
4135
path_bytes
= PyBytes_FromObject(path);
in PyUnicode_FSDecoder()
4137
if (!
path_bytes
) {
in PyUnicode_FSDecoder()
4140
output = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AS_STRING(
path_bytes
),
in PyUnicode_FSDecoder()
4141
PyBytes_GET_SIZE(
path_bytes
));
in PyUnicode_FSDecoder()
4142
Py_DECREF(
path_bytes
);
in PyUnicode_FSDecoder()
Completed in 29 milliseconds