Home
last modified time | relevance | path

Searched refs:plugin_path (Results 1 – 16 of 16) sorted by relevance

/third_party/grpc/src/ruby/tools/bin/
Dgrpc_tools_ruby_protoc_plugin22 plugin_path = File.join(File.dirname(__FILE__),
26 exec([ plugin_path, plugin_path ], *ARGV)
Dgrpc_tools_ruby_protoc31 plugin_path = File.join(protoc_dir, plugin_name)
33 exec([ protoc_path, protoc_path ], "--plugin=protoc-gen-grpc=#{plugin_path}", *ARGV)
/third_party/cef/libcef/browser/
Dbrowser_context.cc387 const base::FilePath& plugin_path, in AddPluginLoadDecision() argument
393 DCHECK(!plugin_path.empty()); in AddPluginLoadDecision()
396 std::make_pair(std::make_pair(render_process_id, plugin_path), in AddPluginLoadDecision()
403 const base::FilePath& plugin_path, in HasPluginLoadDecision() argument
409 DCHECK(!plugin_path.empty()); in HasPluginLoadDecision()
412 std::make_pair(std::make_pair(render_process_id, plugin_path), in HasPluginLoadDecision()
Dbrowser_context.h166 const base::FilePath& plugin_path,
171 const base::FilePath& plugin_path,
Dbrowser_contents_delegate.h127 void PluginCrashed(const base::FilePath& plugin_path,
Dbrowser_contents_delegate.cc451 const base::FilePath& plugin_path, in PluginCrashed() argument
455 handler->OnPluginCrashed(browser(), plugin_path.value()); in PluginCrashed()
/third_party/gstreamer/gstreamer/gst/
Dgstregistry.c1577 const gchar *plugin_path; in scan_and_update_registry() local
1601 plugin_path = g_getenv ("GST_PLUGIN_PATH_1_0"); in scan_and_update_registry()
1602 if (plugin_path == NULL) in scan_and_update_registry()
1603 plugin_path = g_getenv ("GST_PLUGIN_PATH"); in scan_and_update_registry()
1604 if (plugin_path) { in scan_and_update_registry()
1608 GST_DEBUG ("GST_PLUGIN_PATH set to %s", plugin_path); in scan_and_update_registry()
1609 list = g_strsplit (plugin_path, G_SEARCHPATH_SEPARATOR_S, 0); in scan_and_update_registry()
1621 plugin_path = g_getenv ("GST_PLUGIN_SYSTEM_PATH_1_0"); in scan_and_update_registry()
1622 if (plugin_path == NULL) in scan_and_update_registry()
1623 plugin_path = g_getenv ("GST_PLUGIN_SYSTEM_PATH"); in scan_and_update_registry()
[all …]
/third_party/cef/libcef_dll/cpptoc/
Drequest_handler_cpptoc.cc336 const cef_string_t* plugin_path) { in request_handler_on_plugin_crashed() argument
349 DCHECK(plugin_path); in request_handler_on_plugin_crashed()
350 if (!plugin_path) in request_handler_on_plugin_crashed()
355 CefBrowserCToCpp::Wrap(browser), CefString(plugin_path)); in request_handler_on_plugin_crashed()
/third_party/cef/libcef_dll/ctocpp/
Drequest_handler_ctocpp.cc332 const CefString& plugin_path) { in OnPluginCrashed() argument
346 DCHECK(!plugin_path.empty()); in OnPluginCrashed()
347 if (plugin_path.empty()) in OnPluginCrashed()
352 plugin_path.GetStruct()); in OnPluginCrashed()
Drequest_handler_ctocpp.h81 const CefString& plugin_path) override;
/third_party/cef/include/capi/
Dcef_request_handler_capi.h238 const cef_string_t* plugin_path);
/third_party/cef/include/
Dcef_request_handler.h237 const CefString& plugin_path) {} in OnPluginCrashed() argument
/third_party/cef/libcef/renderer/alloy/
Dalloy_content_renderer_client.h98 bool IsOriginIsolatedPepperPlugin(const base::FilePath& plugin_path) override;
Dalloy_content_renderer_client.cc410 const base::FilePath& plugin_path) { in IsOriginIsolatedPepperPlugin() argument
/third_party/grpc/bazel/
Dprotobuf.bzl121 "--plugin=protoc-gen-{plugin_name}={plugin_path}".format(
123 plugin_path = plugin.path,
/third_party/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface_unittest.cc316 std::string plugin_path; in RunWithArgs() local
318 plugin_path = GOOGLE_PROTOBUF_TEST_PLUGIN_PATH; in RunWithArgs()
342 plugin_path = possible_paths[i]; in RunWithArgs()
348 if (plugin_path.empty()) { in RunWithArgs()
352 args.push_back("--plugin=prefix-gen-plug=" + plugin_path); in RunWithArgs()