Searched refs:target_info (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/native_client_sdk/src/build_tools/
H A Dmake_simple.py189 def WriteTarget(makefile, target_info):
190 valid_conf = ' '.join(target_info.get('make_valid_configurations', []))
198 ''' % target_info)
200 sources = target_info.get('sources', [])
206 target_name_var = target_info['target_name']
209 for name, config in target_info['configurations'].items():
211 WriteConfig(makefile, name, config, target_info['type'])
213 actions = target_info.get('actions', [])
216 'target': target_info['target_name'],
217 'product': target_info['target_nam
[all...]
/external/chromium_org/chrome/browser/download/
H A Ddownload_target_determiner_unittest.cc236 const DownloadTargetInfo* target_info);
366 scoped_ptr<DownloadTargetInfo> target_info = local
368 VerifyDownloadTarget(test_case, target_info.get());
374 scoped_ptr<DownloadTargetInfo> target_info) {
375 target_info_receiver->swap(target_info);
383 scoped_ptr<DownloadTargetInfo> target_info; local
389 &target_info));
392 return target_info.Pass();
408 const DownloadTargetInfo* target_info) {
411 EXPECT_EQ(expected_local_path.value(), target_info
371 CompletionCallbackWrapper( const base::Closure& closure, scoped_ptr<DownloadTargetInfo>* target_info_receiver, scoped_ptr<DownloadTargetInfo> target_info) argument
406 VerifyDownloadTarget( const DownloadTestCase& test_case, const DownloadTargetInfo* target_info) argument
1804 scoped_ptr<DownloadTargetInfo> target_info = local
1917 scoped_ptr<DownloadTargetInfo> target_info = local
2077 scoped_ptr<DownloadTargetInfo> target_info = local
2166 scoped_ptr<DownloadTargetInfo> target_info = local
[all...]
H A Dchrome_download_manager_delegate.cc694 scoped_ptr<DownloadTargetInfo> target_info) {
698 if (!target_info->target_path.empty() &&
699 IsOpenInBrowserPreferreredForFile(target_info->target_path) &&
700 target_info->is_filetype_handled_safely)
703 if (target_info->is_dangerous_file)
706 callback.Run(target_info->target_path,
707 target_info->target_disposition,
708 target_info->danger_type,
709 target_info->intermediate_path);
691 OnDownloadTargetDetermined( int32 download_id, const content::DownloadTargetCallback& callback, scoped_ptr<DownloadTargetInfo> target_info) argument
H A Ddownload_target_determiner.cc717 scoped_ptr<DownloadTargetInfo> target_info(new DownloadTargetInfo);
719 target_info->target_path = local_path_;
720 target_info->target_disposition =
724 target_info->danger_type = danger_type_;
725 target_info->is_dangerous_file = is_dangerous_file_;
726 target_info->intermediate_path = intermediate_path_;
727 target_info->mime_type = mime_type_;
728 target_info->is_filetype_handled_safely = is_filetype_handled_safely_;
731 FROM_HERE, base::Bind(completion_callback_, base::Passed(&target_info)));
H A Dchrome_download_manager_delegate_unittest.cc249 DownloadTargetInfo* target_info,
254 target_info->target_path = target_path;
255 target_info->target_disposition = target_disposition;
256 target_info->danger_type = danger_type;
257 target_info->intermediate_path = intermediate_path;
248 StoreDownloadTargetInfo(const base::Closure& closure, DownloadTargetInfo* target_info, const base::FilePath& target_path, DownloadItem::TargetDisposition target_disposition, content::DownloadDangerType danger_type, const base::FilePath& intermediate_path) argument
H A Dchrome_download_manager_delegate.h171 scoped_ptr<DownloadTargetInfo> target_info);
/external/chromium_org/sandbox/win/src/
H A Dsharedmem_ipc_server.h91 ClientInfo target_info; member in struct:sandbox::SharedMemIPCServer::ServerControl
H A Dsharedmem_ipc_server.cc120 service_context->target_info.process = target_process_;
121 service_context->target_info.process_id = target_process_id_;
122 service_context->target_info.job_object = target_job_object_;
243 ipc_info.client_info = &service_context->target_info;
H A Dtarget_process.h52 base::win::ScopedProcessInformation* target_info);
H A Dtarget_process.cc115 base::win::ScopedProcessInformation* target_info) {
195 if (!target_info->DuplicateFrom(process_info)) {
111 Create(const wchar_t* exe_path, const wchar_t* command_line, bool inherit_handles, const base::win::StartupInformation& startup_info, base::win::ScopedProcessInformation* target_info) argument
H A Dbroker_services.cc318 PROCESS_INFORMATION* target_info) {
495 *target_info = process_info.Take();
315 SpawnTarget(const wchar_t* exe_path, const wchar_t* command_line, TargetPolicy* policy, PROCESS_INFORMATION* target_info) argument
/external/chromium_org/chrome/browser/renderer_host/
H A Dchrome_resource_dispatcher_host_delegate.cc600 StreamTargetInfo target_info; local
602 target_info.extension_id = extension_id;
604 target_info.view_id = base::GenerateGUID();
606 "?id=" + target_info.view_id;
608 stream_target_info_[request] = target_info;
/external/chromium_org/chrome/installer/util/
H A Dinstaller_state_unittest.cc547 struct target_info { struct
/external/chromium_org/v8/src/
H A Dhydrogen.cc7805 CompilationInfo target_info(target, zone());
7807 // step, but don't transfer ownership to target_info.
7808 target_info.SetAstValueFactory(top_info()->ast_value_factory(), false);
7810 if (!Parser::Parse(&target_info) || !Scope::Analyze(&target_info)) {
7811 if (target_info.isolate()->has_pending_exception()) {
7820 if (target_info.scope()->num_heap_slots() > 0) {
7824 FunctionLiteral* function = target_info.function();
7856 ZoneList<Declaration*>* decls = target_info.scope()->declarations();
7867 if (!Compiler::EnsureDeoptimizationSupport(&target_info)) {
[all...]

Completed in 5788 milliseconds