OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fileinfo
(Results
51 - 75
of
378
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/go/linux-x86/src/os/
stat_openbsd.go
18
func fileInfoFromStat(st *syscall.Stat_t, name string)
FileInfo
{
59
func atime(fi
FileInfo
) time.Time {
stat_solaris.go
18
func fileInfoFromStat(st *syscall.Stat_t, name string)
FileInfo
{
59
func atime(fi
FileInfo
) time.Time {
doc.go
97
// returns a slice of up to n
FileInfo
values, as would be returned
101
// If n > 0, Readdir returns at most n
FileInfo
structures. In this case, if
105
// If n <= 0, Readdir returns all the
FileInfo
from the directory in
109
// directory, Readdir returns the
FileInfo
read until that point
111
func (f *File) Readdir(n int) (fi []
FileInfo
, err error) {
types.go
15
// A
FileInfo
describes a file and is returned by Stat and Lstat.
16
type
FileInfo
interface {
111
func SameFile(fi1, fi2
FileInfo
) bool {
types_windows.go
13
// A fileStat is the implementation of
FileInfo
returned by Stat and Lstat.
105
func atime(fi
FileInfo
) time.Time {
file_unix.go
136
// Stat returns the
FileInfo
structure describing file.
138
func (f *File) Stat() (
FileInfo
, error) {
150
// Stat returns a
FileInfo
describing the named file.
152
func Stat(name string) (
FileInfo
, error) {
161
// Lstat returns a
FileInfo
describing the named file.
162
// If the file is a symbolic link, the returned
FileInfo
165
func Lstat(name string) (
FileInfo
, error) {
174
func (f *File) readdir(n int) (fi []
FileInfo
, err error) {
180
fi = make([]
FileInfo
, 0, len(names))
/external/libchrome/base/files/
file_enumerator.h
43
class BASE_EXPORT
FileInfo
{
45
FileInfo
();
46
~
FileInfo
();
124
FileInfo
GetInfo() const;
138
static bool ReadDirectory(std::vector<
FileInfo
>* entries,
142
std::vector<
FileInfo
> directory_entries_;
/system/webservd/libwebserv/
request.h
42
class LIBWEBSERV_EXPORT
FileInfo
final {
54
LIBWEBSERV_PRIVATE
FileInfo
(DBusProtocolHandler* handler,
68
DISALLOW_COPY_AND_ASSIGN(
FileInfo
);
109
std::vector<std::pair<std::string, const
FileInfo
*>> GetFiles() const;
123
std::vector<const
FileInfo
*> GetFileInfo(const std::string& name) const;
141
std::multimap<std::string, std::unique_ptr<
FileInfo
>> file_info_;
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexServerSession.java
412
private int receiveFile(BluetoothOppReceiveFileInfo
fileInfo
, Operation op) {
433
updateValues.put(BluetoothShare._DATA,
fileInfo
.mFileName);
442
bos = new BufferedOutputStream(
fileInfo
.mOutputStream, 0x10000);
451
while ((!mInterrupted) && (position !=
fileInfo
.mLength)) {
464
percent = position * 100 /
fileInfo
.mLength;
496
if (position ==
fileInfo
.mLength) {
497
if (D) Log.d(TAG, "Receiving file completed for " +
fileInfo
.mFileName);
500
if (D) Log.d(TAG, "Reading file failed at " + position + " of " +
fileInfo
.mLength);
519
BluetoothOppReceiveFileInfo
fileInfo
= BluetoothOppReceiveFileInfo.generateFileInfo(
523
Log.v(TAG, "filename :" +
fileInfo
.mFileName)
[
all
...]
/prebuilts/go/darwin-x86/src/os/
doc.go
97
// returns a slice of up to n
FileInfo
values, as would be returned
101
// If n > 0, Readdir returns at most n
FileInfo
structures. In this case, if
105
// If n <= 0, Readdir returns all the
FileInfo
from the directory in
109
// directory, Readdir returns the
FileInfo
read until that point
111
func (f *File) Readdir(n int) (fi []
FileInfo
, err error) {
types.go
15
// A
FileInfo
describes a file and is returned by Stat and Lstat.
16
type
FileInfo
interface {
111
func SameFile(fi1, fi2
FileInfo
) bool {
types_windows.go
13
// A fileStat is the implementation of
FileInfo
returned by Stat and Lstat.
105
func atime(fi
FileInfo
) time.Time {
file_unix.go
136
// Stat returns the
FileInfo
structure describing file.
138
func (f *File) Stat() (
FileInfo
, error) {
150
// Stat returns a
FileInfo
describing the named file.
152
func Stat(name string) (
FileInfo
, error) {
161
// Lstat returns a
FileInfo
describing the named file.
162
// If the file is a symbolic link, the returned
FileInfo
165
func Lstat(name string) (
FileInfo
, error) {
174
func (f *File) readdir(n int) (fi []
FileInfo
, err error) {
180
fi = make([]
FileInfo
, 0, len(names))
/system/core/include/ziparchive/
zip_writer.h
133
struct
FileInfo
{
146
int32_t StoreBytes(
FileInfo
* file, const void* data, size_t len);
147
int32_t CompressBytes(
FileInfo
* file, const void* data, size_t len);
148
int32_t FlushCompressedBytes(
FileInfo
* file);
160
std::vector<
FileInfo
> files_;
/prebuilts/go/darwin-x86/test/stress/
parsego.go
17
func isGoFile(dir os.
FileInfo
) bool {
23
func isPkgFile(dir os.
FileInfo
) bool {
43
filter := func(d os.
FileInfo
) bool {
/prebuilts/go/linux-x86/test/stress/
parsego.go
17
func isGoFile(dir os.
FileInfo
) bool {
23
func isPkgFile(dir os.
FileInfo
) bool {
43
filter := func(d os.
FileInfo
) bool {
/device/google/dragon/crash_collector/
coredump_writer.h
51
struct
FileInfo
{
55
using FileMappings = std::map<FileRange,
FileInfo
>;
/prebuilts/go/darwin-x86/doc/progs/
error.go
97
var f os.
FileInfo
// OMIT
109
func findLine(os.
FileInfo
, int64) (int, int) {
/prebuilts/go/darwin-x86/src/archive/zip/
struct.go
93
//
FileInfo
returns an os.
FileInfo
for the FileHeader.
94
func (h *FileHeader)
FileInfo
() os.
FileInfo
{
98
// headerFileInfo implements os.
FileInfo
.
116
// os.
FileInfo
.
117
// Because os.
FileInfo
's Name method returns only the base name of
120
func FileInfoHeader(fi os.
FileInfo
) (*FileHeader, error) {
/prebuilts/go/linux-x86/doc/progs/
error.go
97
var f os.
FileInfo
// OMIT
109
func findLine(os.
FileInfo
, int64) (int, int) {
/prebuilts/go/linux-x86/src/archive/zip/
struct.go
93
//
FileInfo
returns an os.
FileInfo
for the FileHeader.
94
func (h *FileHeader)
FileInfo
() os.
FileInfo
{
98
// headerFileInfo implements os.
FileInfo
.
116
// os.
FileInfo
.
117
// Because os.
FileInfo
's Name method returns only the base name of
120
func FileInfoHeader(fi os.
FileInfo
) (*FileHeader, error) {
/external/curl/lib/
fileinfo.c
26
#include "
fileinfo
.h"
/external/libvorbis/doc/vorbisfile/
Makefile.am
7
example.html exampleindex.html
fileinfo
.html index.html\
/system/webservd/webservd/
request.h
42
class
FileInfo
final {
44
FileInfo
(const std::string& in_field_name,
64
DISALLOW_COPY_AND_ASSIGN(
FileInfo
);
127
const std::vector<std::unique_ptr<
FileInfo
>>& GetFileInfo() const {
202
std::vector<std::unique_ptr<
FileInfo
>> file_info_;
/external/chromium-trace/catapult/third_party/coverage/coverage/
html.py
362
for filename,
fileinfo
in iitems(status['files']):
363
fileinfo
['index']['nums'] = Numbers(*
fileinfo
['index']['nums'])
364
self.files[filename] =
fileinfo
373
for filename,
fileinfo
in iitems(self.files):
374
fileinfo
['index']['nums'] =
fileinfo
['index']['nums'].init_args()
375
files[filename] =
fileinfo
Completed in 720 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>