HomeSort by relevance Sort by last modified time
    Searched full:file (Results 226 - 250 of 47728) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bluetooth/glib/gio/
gfile.c 1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
50 * @short_description: File and Directory Handling
55 * virtual file system. #GFile<!-- -->s are lightweight, immutable
57 * #GFile objects do not represent files, merely an identifier for a file. All
58 * file content I/O is implemented as streaming operations (see #GInputStream and
73 * files on a filesystem. You can move through the file system with #GFile using
81 * are byte strings that are used to identify the file on the filesystem (relative to
87 * store the real basename or the #GFile to use to actually access the file, because
91 * there may be multiple aliases for the same file. For instance, hard or
92 * soft links may cause two different #GFile<!-- -->s to refer to the same file
4510 GFile *file; member in struct:__anon1181
4529 GFile *file; local
4951 GFile *file; local
5222 GFile *file; member in struct:__anon1185
5353 GFile *file = G_FILE (obj); local
5667 GFile *file; member in struct:__anon1186
5759 GFile *file = G_FILE (obj); local
    [all...]
glocalfileinputstream.c 81 GLocalFileInputStream *file; local
83 file = G_LOCAL_FILE_INPUT_STREAM (object);
118 * @fd: File Descriptor.
120 * Returns: #GFileInputStream for the given file descriptor.
140 GLocalFileInputStream *file; local
143 file = G_LOCAL_FILE_INPUT_STREAM (stream);
150 res = read (file->priv->fd, buffer, count);
160 _("Error reading from file: %s"),
177 GLocalFileInputStream *file; local
179 file = G_LOCAL_FILE_INPUT_STREAM (stream)
216 GLocalFileInputStream *file; local
246 GLocalFileInputStream *file; local
262 GLocalFileInputStream *file; local
299 GLocalFileInputStream *file; local
326 GLocalFileInputStream *file; local
    [all...]
  /external/opencore/oscl/oscl/osclio/src/
oscl_file_io.h 5 * you may not use this file except in compliance with the License.
31 /*! \file oscl_file_io.h
32 \brief The file oscl_file_io.h defines the class Oscl_File. This is the
33 public API to the basic file I/O operations.
54 * Oscl_File_IO class defines the generic way of creating all the file object for all the platforms.
57 * It stores an file pointer that is used to access the file, a cache reference depending whether
77 * Beginning of file
81 * Current position of file pointer
85 * End of file
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
FileDeleteStrategy.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
25 * There is more than one way to delete a file.
38 * The singleton instance for normal file deletion, which does not permit
43 * The singleton instance for forced file deletion, which always deletes,
44 * even if the file represents a non-empty directory.
63 * Deletes the file object, which may be a file or a directory.
    [all...]
FileUtils.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
46 * General file manipulation utilities.
50 * <li>writing to a file
51 * <li>reading from a file
57 * <li>comparing file content
58 * <li>file last changed date
105 * An empty array of type <code>File</code>.
1042 File file = files[i]; local
1452 File file = files[i]; local
1519 File file = files[i]; local
    [all...]
  /external/bluetooth/glib/gio/tests/
g-file.c 48 "/non-existent-file",
52 const char *uris[] = {"file:///",
53 "file:///tmp///",
55 "file:///UTF-8%20p%C5%99%C3%ADli%C5%A1%20%C5%BElu%C5%A5ou%C4%8Dk%C3%BD%20k%C5%AF%C5%88",
59 GFile *file = NULL; local
64 file = g_file_new_for_path (paths[i++]);
65 g_assert (file != NULL);
66 g_object_unref (file);
72 file = g_file_new_for_uri (uris[i++]);
73 g_assert (file != NULL)
328 GFile *file; local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
FieldIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a field reference inside a Dalvik file.
42 public void addContents(DexFile file) {
43 super.addContents(file);
45 TypeIdsSection typeIds = file.getTypeIds();
60 protected int getTypoidIdx(DexFile file) {
61 TypeIdsSection typeIds = file.getTypeIds();
MemberIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
20 * Member (field or method) refs list section of a {@code .dex} file.
24 * Constructs an instance. The file offset is initially unknown.
28 * @param file {@code non-null;} file that this instance is part of
30 public MemberIdsSection(String name, DexFile file) {
31 super(name, file, 4);
MethodIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a method reference inside a Dalvik file.
42 public void addContents(DexFile file) {
43 super.addContents(file);
45 ProtoIdsSection protoIds = file.getProtoIds();
60 protected int getTypoidIdx(DexFile file) {
61 ProtoIdsSection protoIds = file.getProtoIds();
  /dalvik/dx/tests/043-dex-two-classes/
info.txt 3 file are not checked for correctness. This test just makes sure that
4 an attempt to combine two classes into a .dex file succeeds.
  /dalvik/dx/tests/089-dex-define-object/
info.txt 2 fact be converted to a dex file. This test ensures that the conversion
3 runs without failure, though the contents of the converted file are
  /dalvik/libcore/archive/src/main/java/java/util/jar/
package.html 7 form of a MANIFEST file. This manifest can also be used
8 to sign a JAR file.
  /dalvik/libcore/luni/src/main/java/java/io/
FilenameFilter.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
21 * An interface for filtering {@link File} objects based on their names
24 * @see File
25 * @see File#list(FilenameFilter)
35 * the name of the file in {@code dir} to test.
40 public abstract boolean accept(File dir, String filename);
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/spi/
MidiFileReader.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
20 import java.io.File;
31 public abstract MidiFileFormat getMidiFileFormat(File file)
40 public abstract Sequence getSequence(File file)
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/spi/
AudioFileReader.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
20 import java.io.File;
31 public abstract AudioFileFormat getAudioFileFormat(File file)
40 public abstract AudioInputStream getAudioInputStream(File file)
  /development/host/windows/usb/legacy/driver/
android_usb_bulk_file_object.h 5 * you may not use this file except in compliance with the License.
19 /** \file
20 This file consists of declaration of class AndroidUsbBulkPipeFileObject
21 that encapsulates extension to a bulk pipe file objects.
26 /** AndroidUsbBulkPipeFileObject class encapsulates extension to a KMDF file
35 @param dev_obj[in] Our device object for which this file has been created
36 @param wdf_fo[in] KMDF file object this extension wraps
37 @param wdf_pipe_obj[in] KMDF pipe for this file
android_usb_interrupt_file_object.h 5 * you may not use this file except in compliance with the License.
19 /** \file
20 This file consists of declaration of class AndroidUsbInterruptPipeFileObject
21 that encapsulates extension to an interrupt pipe file objects.
27 file object that represent opened interrupt pipe. Instances of this class
35 @param dev_obj[in] Our device object for which this file has been created
36 @param wdf_fo[in] KMDF file object this extension wraps
37 @param wdf_pipe_obj[in] KMDF pipe for this file
  /device/htc/sapphire/
AndroidBoard.mk 4 # you may not use this file except in compliance with the License.
17 $(call add-radio-file,recovery/images/firmware_install.565)
19 file := $(TARGET_OUT_KEYLAYOUT)/sapphire-keypad.kl macro
20 ALL_PREBUILT += $(file)
21 $(file) : $(LOCAL_PATH)/sapphire-keypad.kl | $(ACP)
24 file := $(TARGET_ROOT_OUT)/init.sapphire.rc macro
25 ALL_PREBUILT += $(file)
26 $(file) : $(LOCAL_PATH)/init.sapphire.rc | $(ACP)
  /external/clearsilver/cs/
test12.cs 5 <?cs each:file = files ?>
6 <li><?cs var:file.Name ?></li>
7 <?cs if:file.Sub.0.Name ?>
8 <?cs call:display_files(file.Sub) ?>
20 <?cs each:file = files ?>
21 <?cs var:spc ?><?cs var:file.Name ?><br>
22 <?cs if:file.Sub.0.Name ?>
23 <?cs call:display_files2(file.Sub, spc + "&nbsp;") ?>
  /external/clearsilver/man/man3/
hdf_dump_format.3 14 hdf_dump_format - dump an HDF dataset to FILE *fp
24 NEOERR* hdf_dump_format (HDF *hdf, int lvl, FILE *fp);
  /external/icu4c/extra/scrptrun/
srtest.dsw 1 Microsoft Developer Studio Workspace File, Format Version 6.00
2 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
  /external/icu4c/samples/layout/
FontMap.Gnome 3 # This is a sample FontMap file for Linux.
4 # Fonts are specified by file names.
  /external/icu4c/test/threadtest/
threadtest.dsw 1 Microsoft Developer Studio Workspace File, Format Version 6.00
2 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
  /external/icu4c/tools/dumpce/
dumpce.dsw 1 Microsoft Developer Studio Workspace File, Format Version 6.00
2 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
  /external/jpeg/
rdjpgcom.1 3 rdjpgcom \- display text comments from a JPEG file
16 reads the named JPEG/JFIF file, or the standard input if no file is named,
17 and prints any text comments found in the file on the standard output.
19 The JPEG standard allows "comment" (COM) blocks to occur within a JPEG file.
24 file. The maximum size of a COM block is 64K, but you can have as many of
25 them as you like in one JPEG file.
37 illustration of the minimum amount of code required to parse a JPEG file

Completed in 504 milliseconds

1 2 3 4 5 6 7 8 91011>>