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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/ruby/
file.i 20 OpenFile *of;
28 OpenFile *of;
35 OpenFile *of;
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/operations/
open_file.cc 16 OpenFile::OpenFile(
30 OpenFile::~OpenFile() {
33 bool OpenFile::Execute(int request_id) {
60 void OpenFile::OnSuccess(int request_id,
63 // File handle is the same as request id of the OpenFile operation.
67 void OpenFile::OnError(int /* request_id */, base::File::Error error) {
open_file.h 31 class OpenFile : public Operation {
33 OpenFile(extensions::EventRouter* event_router,
39 virtual ~OpenFile();
54 DISALLOW_COPY_AND_ASSIGN(OpenFile);
  /external/chromium_org/sandbox/win/src/
policy_params.h 22 POLPARAMS_BEGIN(OpenFile)
27 POLPARAMS_END(OpenFile)
35 COMPILE_ASSERT(OpenFile::NAME == static_cast<int>(FileName::NAME),
37 COMPILE_ASSERT(OpenFile::BROKER == static_cast<int>(FileName::BROKER),
filesystem_dispatcher.cc 98 CountedParameterSet<OpenFile> params;
99 params[OpenFile::NAME] = ParamPickerMake(filename);
100 params[OpenFile::ACCESS] = ParamPickerMake(desired_access);
101 params[OpenFile::OPTIONS] = ParamPickerMake(create_options);
102 params[OpenFile::BROKER] = ParamPickerMake(broker);
140 CountedParameterSet<OpenFile> params;
141 params[OpenFile::NAME] = ParamPickerMake(filename);
142 params[OpenFile::ACCESS] = ParamPickerMake(desired_access);
143 params[OpenFile::OPTIONS] = ParamPickerMake(open_options);
144 params[OpenFile::BROKER] = ParamPickerMake(broker)
    [all...]
filesystem_interception.cc 56 CountedParameterSet<OpenFile> params;
57 params[OpenFile::NAME] = ParamPickerMake(name);
58 params[OpenFile::ACCESS] = ParamPickerMake(desired_access);
59 params[OpenFile::OPTIONS] = ParamPickerMake(options);
60 params[OpenFile::BROKER] = ParamPickerMake(broker);
127 CountedParameterSet<OpenFile> params;
128 params[OpenFile::NAME] = ParamPickerMake(name);
129 params[OpenFile::ACCESS] = ParamPickerMake(desired_access);
130 params[OpenFile::OPTIONS] = ParamPickerMake(options);
131 params[OpenFile::BROKER] = ParamPickerMake(broker)
    [all...]
  /external/chromium_org/chrome/browser/printing/
printer_manager_dialog_mac.mm 15 [[NSWorkspace sharedWorkspace] openFile:kPrintAndFaxPrefPane];
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/
eclipse.ini 10 openFile
  /external/chromium_org/third_party/webrtc/modules/audio_processing/test/
unpack.cc 71 FILE* debug_file = OpenFile(argv[1], "rb");
84 static FILE* reverse_file = OpenFile(FLAGS_reverse_file, "wb");
89 static FILE* float_reverse_file = OpenFile(FLAGS_float_reverse_file,
105 static FILE* input_file = OpenFile(FLAGS_input_file, "wb");
110 static FILE* float_input_file = OpenFile(FLAGS_float_input_file, "wb");
118 static FILE* output_file = OpenFile(FLAGS_output_file, "wb");
123 static FILE* float_output_file = OpenFile(FLAGS_float_output_file,
133 static FILE* delay_file = OpenFile(FLAGS_delay_file, "wb");
139 static FILE* drift_file = OpenFile(FLAGS_drift_file, "wb");
145 static FILE* level_file = OpenFile(FLAGS_level_file, "wb")
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
open_file_operation.h 54 // If |mime_type| is non empty and the file is created by this OpenFile()
57 void OpenFile(const base::FilePath& file_path,
63 // Part of OpenFile(). Called after file creation is completed.
68 // Part of OpenFile(). Called after file downloading is completed.
74 // Part of OpenFile(). Called after opening the cache file.
open_file_operation_unittest.cc 46 operation_->OpenFile(
72 operation_->OpenFile(
92 operation_->OpenFile(
111 operation_->OpenFile(
144 operation_->OpenFile(
179 operation_->OpenFile(
209 operation_->OpenFile(
226 operation_->OpenFile(
  /external/chromium_org/ppapi/thunk/
ppb_flash_file_modulelocal_thunk.cc 23 int32_t OpenFile(PP_Instance instance,
30 return enter.functions()->OpenFile(instance, path, mode, file);
93 &OpenFile,
ppb_flash_file_fileref_thunk.cc 25 int32_t OpenFile(PP_Resource file_ref_id, int32_t mode, PP_FileHandle* file) {
46 &OpenFile,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
execfile.py 31 openfile = None
44 openfile, pathname, _ = imp.find_module(name, searchpath)
47 if openfile is None and pathname is None:
54 if openfile is None:
59 openfile, pathname, _ = imp.find_module(name, searchpath)
64 if openfile:
65 openfile.close()
  /system/vold/
Process.cpp 202 char openfile[PATH_MAX]; local
204 if (checkFileDescriptorSymLinks(pid, path, openfile, sizeof(openfile))) {
205 SLOGE("Process %s (%d) has open file %s", name, pid, openfile);
206 } else if (checkFileMaps(pid, path, openfile, sizeof(openfile))) {
207 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);
177 mockContentProvider.openFile(uri, "r");
183 mockContentProvider.openFile(null, null);
199 assertNotNull(cp.openFile(uri, "r"));
203 cp.openFile(uri, "wrong");
213 cp.openFile(uri, "r");
219 cp.openFile((Uri) null, "r");
300 * This provider implements openFile() using ContentProvider.openFileHelper().
345 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
  /external/chromium_org/ppapi/tests/
test_flash_file.cc 110 RUN_TEST(OpenFile, filter);
129 PP_FileHandle file_handle = FileModuleLocal::OpenFile(instance_,
141 file_handle = FileModuleLocal::OpenFile(instance_,
161 PP_FileHandle file_handle = FileModuleLocal::OpenFile(instance_,
171 file_handle = FileModuleLocal::OpenFile(instance_,
193 PP_FileHandle file_handle = FileModuleLocal::OpenFile(instance_,
211 file_handle = FileModuleLocal::OpenFile(
243 PP_FileHandle file_handle = FileModuleLocal::OpenFile(instance_,
279 PP_FileHandle file_handle = FileModuleLocal::OpenFile(instance_,
  /external/chromium_org/sandbox/win/tests/validation_tests/
suite.cc 83 EXPECT_EQ(SBOX_TEST_DENIED, runner.RunTest(L"OpenFile %SystemDrive%"));
84 EXPECT_EQ(SBOX_TEST_DENIED, runner.RunTest(L"OpenFile %SystemRoot%"));
85 EXPECT_EQ(SBOX_TEST_DENIED, runner.RunTest(L"OpenFile %ProgramFiles%"));
87 runner.RunTest(L"OpenFile %SystemRoot%\\System32"));
89 runner.RunTest(L"OpenFile %SystemRoot%\\explorer.exe"));
91 runner.RunTest(L"OpenFile %SystemRoot%\\Cursors\\arrow_i.cur"));
93 runner.RunTest(L"OpenFile %AllUsersProfile%"));
94 EXPECT_EQ(SBOX_TEST_DENIED, runner.RunTest(L"OpenFile %Temp%"));
95 EXPECT_EQ(SBOX_TEST_DENIED, runner.RunTest(L"OpenFile %AppData%"));
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
PermissionContentProviderPath.java 51 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
  /external/chromium_org/base/test/
perf_log.cc 21 perf_log_file = OpenFile(log_file, "w");
  /external/chromium_org/third_party/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"));
  /external/chromium_org/webkit/browser/database/
vfs_backend.h 21 static base::File OpenFile(const base::FilePath& file_path,
  /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();
  /frameworks/av/media/libmediaplayerservice/
ActivityManager.h 24 // Perform a ContentProvider.openFile() call for the given URI.

Completed in 384 milliseconds

1 2 3 4 5 6 7 8 91011>>