Home
last modified time | relevance | path

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

/external/chromium_org/native_client_sdk/src/build_tools/
Dmake_simple.py189 def WriteTarget(makefile, target_info): argument
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_name'],
[all …]
/external/chromium_org/chrome/browser/download/
Ddownload_target_determiner_unittest.cc236 const DownloadTargetInfo* target_info);
366 scoped_ptr<DownloadTargetInfo> target_info = in RunTestCase() local
368 VerifyDownloadTarget(test_case, target_info.get()); in RunTestCase()
374 scoped_ptr<DownloadTargetInfo> target_info) { in CompletionCallbackWrapper() argument
375 target_info_receiver->swap(target_info); in CompletionCallbackWrapper()
383 scoped_ptr<DownloadTargetInfo> target_info; in RunDownloadTargetDeterminer() local
389 &target_info)); in RunDownloadTargetDeterminer()
392 return target_info.Pass(); in RunDownloadTargetDeterminer()
408 const DownloadTargetInfo* target_info) { in VerifyDownloadTarget() argument
411 EXPECT_EQ(expected_local_path.value(), target_info->target_path.value()); in VerifyDownloadTarget()
[all …]
Dchrome_download_manager_delegate.cc694 scoped_ptr<DownloadTargetInfo> target_info) { in OnDownloadTargetDetermined() argument
698 if (!target_info->target_path.empty() && in OnDownloadTargetDetermined()
699 IsOpenInBrowserPreferreredForFile(target_info->target_path) && in OnDownloadTargetDetermined()
700 target_info->is_filetype_handled_safely) in OnDownloadTargetDetermined()
703 if (target_info->is_dangerous_file) in OnDownloadTargetDetermined()
706 callback.Run(target_info->target_path, in OnDownloadTargetDetermined()
707 target_info->target_disposition, in OnDownloadTargetDetermined()
708 target_info->danger_type, in OnDownloadTargetDetermined()
709 target_info->intermediate_path); in OnDownloadTargetDetermined()
Ddownload_target_determiner.cc717 scoped_ptr<DownloadTargetInfo> target_info(new DownloadTargetInfo); in ScheduleCallbackAndDeleteSelf() local
719 target_info->target_path = local_path_; in ScheduleCallbackAndDeleteSelf()
720 target_info->target_disposition = in ScheduleCallbackAndDeleteSelf()
724 target_info->danger_type = danger_type_; in ScheduleCallbackAndDeleteSelf()
725 target_info->is_dangerous_file = is_dangerous_file_; in ScheduleCallbackAndDeleteSelf()
726 target_info->intermediate_path = intermediate_path_; in ScheduleCallbackAndDeleteSelf()
727 target_info->mime_type = mime_type_; in ScheduleCallbackAndDeleteSelf()
728 target_info->is_filetype_handled_safely = is_filetype_handled_safely_; in ScheduleCallbackAndDeleteSelf()
731 FROM_HERE, base::Bind(completion_callback_, base::Passed(&target_info))); in ScheduleCallbackAndDeleteSelf()
Dchrome_download_manager_delegate_unittest.cc249 DownloadTargetInfo* target_info, in StoreDownloadTargetInfo() argument
254 target_info->target_path = target_path; in StoreDownloadTargetInfo()
255 target_info->target_disposition = target_disposition; in StoreDownloadTargetInfo()
256 target_info->danger_type = danger_type; in StoreDownloadTargetInfo()
257 target_info->intermediate_path = intermediate_path; in StoreDownloadTargetInfo()
Dchrome_download_manager_delegate.h171 scoped_ptr<DownloadTargetInfo> target_info);
/external/chromium_org/sandbox/win/src/
Dsharedmem_ipc_server.cc120 service_context->target_info.process = target_process_; in Init()
121 service_context->target_info.process_id = target_process_id_; in Init()
122 service_context->target_info.job_object = target_job_object_; in Init()
243 ipc_info.client_info = &service_context->target_info; in InvokeCallback()
Dsharedmem_ipc_server.h91 ClientInfo target_info; member
Dtarget_process.h52 base::win::ScopedProcessInformation* target_info);
Dtarget_process.cc115 base::win::ScopedProcessInformation* target_info) { in Create() argument
195 if (!target_info->DuplicateFrom(process_info)) { in Create()
Dbroker_services.cc318 PROCESS_INFORMATION* target_info) { in SpawnTarget() argument
495 *target_info = process_info.Take(); in SpawnTarget()
/external/chromium_org/chrome/browser/renderer_host/
Dchrome_resource_dispatcher_host_delegate.cc600 StreamTargetInfo target_info; in ShouldInterceptResourceAsStream() local
602 target_info.extension_id = extension_id; in ShouldInterceptResourceAsStream()
604 target_info.view_id = base::GenerateGUID(); in ShouldInterceptResourceAsStream()
606 "?id=" + target_info.view_id; in ShouldInterceptResourceAsStream()
608 stream_target_info_[request] = target_info; in ShouldInterceptResourceAsStream()
/external/chromium_org/chrome/installer/util/
Dinstaller_state_unittest.cc547 struct target_info { in TEST_F() struct
/external/chromium_org/v8/src/
Dhydrogen.cc7805 CompilationInfo target_info(target, zone()); in TryInline() local
7808 target_info.SetAstValueFactory(top_info()->ast_value_factory(), false); in TryInline()
7810 if (!Parser::Parse(&target_info) || !Scope::Analyze(&target_info)) { in TryInline()
7811 if (target_info.isolate()->has_pending_exception()) { in TryInline()
7820 if (target_info.scope()->num_heap_slots() > 0) { in TryInline()
7824 FunctionLiteral* function = target_info.function(); in TryInline()
7856 ZoneList<Declaration*>* decls = target_info.scope()->declarations(); in TryInline()
7867 if (!Compiler::EnsureDeoptimizationSupport(&target_info)) { in TryInline()
7878 AstTyper::Run(&target_info); in TryInline()
7886 this, &target_info, inlining_kind, function_id); in TryInline()
[all …]