HomeSort by relevance Sort by last modified time
    Searched full:openfile (Results 1 - 25 of 378) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue6405.go 12 return OpenFile() // ERROR "undefined: OpenFile"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue6405.go 12 return OpenFile() // ERROR "undefined: OpenFile"
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
file.i 20 OpenFile *of;
28 OpenFile *of;
35 OpenFile *of;
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ThaiStateTableBuilder.java 20 writer.openFile(args[0]);
  /external/libchrome/sandbox/win/src/
policy_params.h 22 POLPARAMS_BEGIN(OpenFile)
28 POLPARAMS_END(OpenFile)
36 static_assert(OpenFile::NAME == static_cast<int>(FileName::NAME),
38 static_assert(OpenFile::BROKER == static_cast<int>(FileName::BROKER),
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/
eclipse.ini 10 openFile
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/output/
FileOutput.java 49 openFile().close();
53 final OutputStream output = openFile();
66 private OutputStream openFile() throws IOException {
  /prebuilts/go/darwin-x86/src/os/exec/
lp_unix_test.go 31 f, err := os.OpenFile("exec_me", os.O_CREATE|os.O_EXCL, 0700)
33 t.Fatal("OpenFile failed: ", err)
  /prebuilts/go/linux-x86/src/os/exec/
lp_unix_test.go 31 f, err := os.OpenFile("exec_me", os.O_CREATE|os.O_EXCL, 0700)
33 t.Fatal("OpenFile failed: ", err)
  /system/vold/
Process.cpp 198 char openfile[PATH_MAX]; local
200 if (checkFileDescriptorSymLinks(pid, path, openfile, sizeof(openfile))) {
201 SLOGE("Process %s (%d) has open file %s", name, pid, openfile);
202 } else if (checkFileMaps(pid, path, openfile, sizeof(openfile))) {
203 SLOGE("Process %s (%d) has open filemap for %s", name, pid, openfile);
  /cts/tests/tests/content/src/android/content/cts/
ContentProviderTest.java 63 mockContentProvider.openFile(null, null);
173 mockContentProvider.openFile(uri, "r");
179 mockContentProvider.openFile(null, null);
195 assertNotNull(cp.openFile(uri, "r"));
199 cp.openFile(uri, "wrong");
209 cp.openFile(uri, "r");
215 cp.openFile((Uri) null, "r");
296 * This provider implements openFile() using ContentProvider.openFileHelper().
341 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
PermissionContentProviderPath.java 51 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
  /external/lzma/CPP/7zip/Archive/7z/
7zFolderOutStream.cpp 37 HRESULT CFolderOutStream::OpenFile()
78 RINOK(OpenFile());
118 RINOK(OpenFile());
143 RINOK(OpenFile());
7zFolderOutStream.h 33 HRESULT OpenFile();
  /external/webrtc/webrtc/base/
fileutils_unittest.cc 34 fs = Filesystem::OpenFile(path, "wb");
42 fs = Filesystem::OpenFile(path, "rb");
60 FileStream* fs = Filesystem::OpenFile(path, "rb");
77 scoped_ptr<FileStream> fs(Filesystem::OpenFile(path, "wb"));
  /frameworks/av/media/libmediaplayerservice/
ActivityManager.h 24 // Perform a ContentProvider.openFile() call for the given URI.
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
ITraceviewLauncher.java 24 boolean openFile(String osPath);
  /external/webrtc/talk/media/devices/
filevideocapturer_unittest.cc 47 bool OpenFile(const std::string& filename) {
97 EXPECT_FALSE(OpenFile("NotmeNotme"));
101 EXPECT_TRUE(OpenFile("captured-320x240-2s-48.frames"));
110 EXPECT_TRUE(OpenFile("captured-320x240-2s-48.frames"));
127 EXPECT_TRUE(OpenFile("captured-320x240-2s-48.frames"));
144 EXPECT_TRUE(OpenFile("captured-320x240-2s-48.frames"));
157 EXPECT_TRUE(OpenFile("captured-320x240-2s-48.frames"));
179 EXPECT_TRUE(OpenFile("1.frame_plus_1.byte"));
  /external/chromium-trace/catapult/third_party/coverage/coverage/
execfile.py 64 openfile = None
76 openfile, pathname, _ = imp.find_module(name, searchpath)
79 if openfile is None and pathname is None:
86 if openfile is None:
91 openfile, pathname, _ = imp.find_module(name, searchpath)
95 if openfile:
96 openfile.close()
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
AppFuseTest.java 61 final ParcelFileDescriptor fd = appFuse.openFile(
73 appFuse.openFile(INODE, ParcelFileDescriptor.MODE_READ_ONLY);
85 appFuse.openFile(INODE, ParcelFileDescriptor.MODE_READ_WRITE);
121 final ParcelFileDescriptor fd = appFuse.openFile(
157 final ParcelFileDescriptor fd = appFuse.openFile(
187 final ParcelFileDescriptor fd = appFuse.openFile(
224 final ParcelFileDescriptor fd = appFuse.openFile(
  /external/webrtc/webrtc/modules/audio_processing/transient/
file_utils_unittest.cc 143 file->OpenFile(test_filename.c_str(),
187 file->OpenFile(test_filename.c_str(),
234 file->OpenFile(test_filename.c_str(),
279 file->OpenFile(test_filename.c_str(),
321 file->OpenFile(test_filename.c_str(),
364 file->OpenFile(kOutFileName.c_str(),
385 file->OpenFile(kOutFileName.c_str(),
411 file->OpenFile(kOutFileName.c_str(),
432 file->OpenFile(kOutFileName.c_str(),
458 file->OpenFile(kOutFileName.c_str()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/test/
test_email_torture.py 22 def openfile(filename): function
29 openfile('crispin-torture.txt')
38 fp = openfile(filename)
  /prebuilts/gdb/linux-x86/lib/python2.7/email/test/
test_email_torture.py 22 def openfile(filename): function
29 openfile('crispin-torture.txt')
38 fp = openfile(filename)
  /prebuilts/go/darwin-x86/src/os/
error_test.go 23 f2, err := os.OpenFile(f.Name(), os.O_RDWR|os.O_CREATE|os.O_EXCL, 0600)
122 f2, err := os.OpenFile(f.Name(), os.O_RDWR, 0600)
127 f2, err = os.OpenFile(f.Name()+"\x00", os.O_RDWR, 0600)
  /prebuilts/go/linux-x86/src/os/
error_test.go 23 f2, err := os.OpenFile(f.Name(), os.O_RDWR|os.O_CREATE|os.O_EXCL, 0600)
122 f2, err := os.OpenFile(f.Name(), os.O_RDWR, 0600)
127 f2, err = os.OpenFile(f.Name()+"\x00", os.O_RDWR, 0600)

Completed in 1523 milliseconds

1 2 3 4 5 6 7 8 91011>>