/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
__init__.py | 1 # Dummy file to make this directory a package.
|
/device/asus/fugu/sepolicy/ |
system_server.te | 1 # Allow system server factory file access 3 allow system_server efs_file:file r_file_perms;
|
/device/lge/hammerhead/sepolicy/ |
ueventd.te | 2 allow ueventd { firmware_file wifi_data_file }:file r_file_perms; 3 allow ueventd sysfs_smdcntl_open_timeout:file setattr;
|
/external/llvm/test/MC/AsmParser/ |
directive_file.s | 4 .file "hello" 5 .file 1 "worl\144" # "\144" is "d" 6 .file 2 "directory" "file" 8 # CHECK: .file "hello" 9 # CHECK: .file 1 "world" 10 # CHECK: .file 2 "directory" "file"
|
/external/selinux/sepolgen/tests/ |
module_compile_test.te | 5 class file { read write }; 8 allow foo bar : file { read write }
|
/external/valgrind/none/tests/ |
fdleak_creat.stderr.exp | 3 FILE DESCRIPTORS: 4 open at exit. 4 Open file descriptor ...: /tmp/file 7 Open file descriptor ...: ... 10 Open file descriptor ...: ... 13 Open file descriptor ...: /dev/null
|
procfs-non-linux.stderr.exp-with-readlinkat | 3 open(): No such file or directory 5 open(): No such file or directory 6 readlink: No such file or directory 7 readlink: No such file or directory 8 readlinkat: No such file or directory 9 readlinkat: No such file or directory
|
fdleak_dup2.stderr.exp | 3 FILE DESCRIPTORS: 6 open at exit. 4 Open file descriptor ...: /dev/null 7 Open file descriptor ...: /dev/null 10 Open file descriptor ...: /dev/null 13 Open file descriptor ...: ... 16 Open file descriptor ...: ... 19 Open file descriptor ...: /dev/null
|
fdleak_open.stderr.exp | 3 FILE DESCRIPTORS: 4 open at exit. 4 Open file descriptor ...: /dev/null 7 Open file descriptor ...: ... 10 Open file descriptor ...: ... 13 Open file descriptor ...: /dev/null
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
marshal.h | 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int); 13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int); 16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *); 17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *); 18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *); 19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
marshal.h | 12 PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int); 13 PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int); 16 PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *); 17 PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *); 18 PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *); 19 PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
|
/external/selinux/libsemanage/man/man3/ |
semanage_fcontext.3 | 4 semanage_fcontext \- SELinux File Context Management API 14 This object contains properties associated with a SELinux file context specification 24 create a file context spec 29 release resources for this file context spec 34 create a key, which can be used to identify a file context spec 39 release resources for this file context spec key 44 create a key matching this file context spec 49 create an identical file context spec (deep-copy clone) 54 compare this file context spec to the provided key 59 compare this file context spec to anothe [all...] |
/external/guava/guava-tests/test/com/google/common/io/ |
FileTreeTraverserTest.java | 5 * you may not use this file except in compliance with the License. 23 import java.io.File; 34 private File dir; 43 File[] files = dir.listFiles(); 49 for (File file : files) { 50 file.delete(); 61 File file = newFile("test"); local 62 assertDirChildren(file); 66 File file = newDir("test"); local 79 File file = new File(dir, name); local 85 File file = new File(dir, name); local [all...] |
/external/e2fsprogs/lib/ext2fs/ |
fileio.c | 2 * fileio.c --- Simple file I/O routines 7 * This file may be redistributed under the terms of the GNU Library 34 #define BMAP_BUFFER (file->buf + fs->blocksize) 40 ext2_file_t file; local 44 * Don't let caller create or open a file for writing if the 51 retval = ext2fs_get_mem(sizeof(struct ext2_file), &file); 55 memset(file, 0, sizeof(struct ext2_file)); 56 file->magic = EXT2_ET_MAGIC_EXT2_FILE; 57 file->fs = fs; 58 file->ino = ino [all...] |
/external/protobuf/vsprojects/ |
libprotobuf.vcproj | 150 <File 153 </File> 154 <File 157 </File> 158 <File 161 </File> 162 <File 165 </File> 166 <File 169 </File> [all...] |
libprotoc.vcproj | 150 <File 153 </File> 154 <File 157 </File> 158 <File 161 </File> 162 <File 165 </File> 166 <File 169 </File> [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/ |
FaultyFileSystem.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 31 private final Set<File> writeFaults = new LinkedHashSet<>(); 37 public void setFaulty(File file, boolean faulty) { 39 writeFaults.add(file); 41 writeFaults.remove(file); 45 @Override public Source source(File file) throws FileNotFoundException { 46 return delegate.source(file); 78 private final File file; field in class:FaultyFileSystem.FaultySink [all...] |
/external/clang/test/Preprocessor/ |
include-directive1.c | 1 // RUN: %clang_cc1 -E %s -fno-caret-diagnostics 2>&1 >/dev/null | grep 'file successfully included' | count 3 6 // expand macros to get to file to include 7 #define FILE "file_to_include.h" 8 #include XX FILE 10 #include FILE
|
/libcore/support/src/test/java/tests/support/ |
Support_DeleteOnExitTest.java | 3 import java.io.File; 12 File file1 = new File(args[0]); 13 File file2 = new File(args[1]);
|
/external/sonic/ |
wave.c | 4 This file is part of the Sonic Library. 6 This file is licensed under the Apache 2.0 license. 10 This file supports read/write wave files. 22 FILE *soundFile; 28 /* Write a string to a file. */ 30 waveFile file, 36 if(file->failed) { 39 bytesWritten = fwrite(bytes, sizeof(char), length, file->soundFile); 41 fprintf(stderr, "Unable to write to output file"); 42 file->failed = 1 245 waveFile file; local 270 waveFile file; local [all...] |
/art/runtime/base/unix_file/ |
fd_file_test.cc | 5 * you may not use this file except in compliance with the License. 44 FdFile file; local 45 EXPECT_EQ(-1, file.Fd()); 46 EXPECT_FALSE(file.IsOpened()); 47 EXPECT_TRUE(file.GetPath().empty()); 51 std::string good_path(GetTmpPath("some-file.txt")); 52 FdFile file; local 53 ASSERT_TRUE(file.Open(good_path, O_CREAT | O_WRONLY)); 54 EXPECT_GE(file.Fd(), 0); 55 EXPECT_TRUE(file.IsOpened()) 71 FdFile file; local 87 FdFile file; local [all...] |
/external/harfbuzz_ng/docs/reference/ |
harfbuzz-sections.txt | 2 <FILE>hb</FILE> 8 <FILE>hb-blob</FILE> 26 <FILE>hb-buffer</FILE> 82 <FILE>hb-common</FILE> 130 <FILE>hb-deprecated</FILE> [all...] |
/external/skia/resources/android_fonts/v17/ |
system_fonts.xml | 5 This file lists the font families that will be used by default for all supported glyphs. 9 the styles with no associated font file will be supported by the other font files listed. 15 The default fallback fonts are specified in the file /system/etc/fallback_fonts.xml, and there 16 is an optional file which may be supplied by vendors to specify other fallback fonts to use 30 <file>Roboto-Regular.ttf</file> 31 <file>Roboto-Bold.ttf</file> 32 <file>Roboto-Italic.ttf</file> [all...] |
/external/google-breakpad/src/processor/testdata/ |
module0.out | 2 FILE 1 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winbase.h 3 FILE 2 c:\program files\microsoft visual studio 8\vc\include\typeinfo 4 FILE 3 c:\breakpad\trunk\src\common\windows\guid_string.h 5 FILE 4 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcdce.h 6 FILE 5 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winreg.h 7 FILE 6 c:\program files\microsoft visual studio 8\vc\platformsdk\include\objidl.h 8 FILE 7 c:\program files\microsoft visual studio 8\vc\platformsdk\include\wtypes.h 9 FILE 8 c:\program files\microsoft visual studio 8\vc\platformsdk\include\tvout.h 10 FILE 9 c:\program files\microsoft visual studio 8\vc\include\malloc.h 11 FILE 10 c:\program files\microsoft visual studio 8\vc\platformsdk\include\pshpack2. [all...] |
/external/google-breakpad/src/processor/testdata/symbols/test_app.pdb/5A9832E5287241C1838ED98914E9B7FF1/ |
test_app.sym | 2 FILE 1 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winbase.h 3 FILE 2 c:\program files\microsoft visual studio 8\vc\include\typeinfo 4 FILE 3 c:\breakpad\trunk\src\common\windows\guid_string.h 5 FILE 4 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcdce.h 6 FILE 5 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winreg.h 7 FILE 6 c:\program files\microsoft visual studio 8\vc\platformsdk\include\objidl.h 8 FILE 7 c:\program files\microsoft visual studio 8\vc\platformsdk\include\wtypes.h 9 FILE 8 c:\program files\microsoft visual studio 8\vc\platformsdk\include\tvout.h 10 FILE 9 c:\program files\microsoft visual studio 8\vc\include\malloc.h 11 FILE 10 c:\program files\microsoft visual studio 8\vc\platformsdk\include\pshpack2. [all...] |