/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/chrome/browser/chromeos/drive/file_system/ |
open_file_operation.h | 53 // If |mime_type| is non empty and the file is created by this OpenFile() 56 void OpenFile(const base::FilePath& file_path, 62 // Part of OpenFile(). Called after file creation is completed. 67 // Part of OpenFile(). Called after file downloading is completed. 73 // Part of OpenFile(). Called after marking the cache file dirty.
|
open_file_operation_unittest.cc | 46 operation_->OpenFile( 74 operation_->OpenFile( 94 operation_->OpenFile( 113 operation_->OpenFile( 147 operation_->OpenFile( 194 operation_->OpenFile( 225 operation_->OpenFile( 242 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 | 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); 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/base/ |
perftimer.cc | 24 perf_log_file = file_util::OpenFile(log_file, "w");
|
file_util_deprecated.h | 28 BASE_API FILE* OpenFile(const std::string& filename, const char* mode); 29 BASE_API FILE* OpenFile(const std::wstring& filename, const char* mode);
|
/external/chromium_org/base/test/ |
perf_log.cc | 21 perf_log_file = OpenFile(log_file, "w");
|
/external/chromium_org/webkit/browser/database/ |
vfs_backend.h | 21 static void 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.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
ITraceviewLauncher.java | 24 boolean openFile(String osPath);
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
fileapi_worker_unittest.cc | 43 virtual void OpenFile(const base::FilePath& file_path, 67 // Helper function of testing OpenFile() for write access. It checks that the 104 // Helper function of testing OpenFile() for read access. It checks that the 179 OpenFile(kDummyPath, 201 OpenFile(kDummyPath, 223 OpenFile(kDummyPath, 245 OpenFile(kDummyPath, 264 OpenFile(kDummyPath,
|
/external/chromium_org/third_party/libjingle/source/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"));
|