HomeSort by relevance Sort by last modified time
    Searched defs:Plugin (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /art/runtime/
plugin.h 26 // This function is loaded from the plugin (if present) and called during runtime initialization.
33 // A class encapsulating a plugin. There is no stable plugin ABI or API and likely never will be.
36 class Plugin {
38 static Plugin Create(const std::string& lib) {
39 return Plugin(lib);
54 ~Plugin() {
60 Plugin(const Plugin& other);
63 Plugin(Plugin&& other) noexcep
    [all...]
plugin.cc 17 #include "plugin.h"
30 Plugin::Plugin(const Plugin& other) : library_(other.library_), dlopen_handle_(nullptr) {
34 bool Plugin::Load(/*out*/std::string* error_msg) {
47 *error_msg = StringPrintf("Initialization of plugin failed");
57 bool Plugin::Unload() {
77 std::ostream& operator<<(std::ostream &os, const Plugin* m) {
81 std::ostream& operator<<(std::ostream &os, Plugin const& m) {
82 return os << "Plugin { library=\"" << m.library_ << "\", handle=" << m.dlopen_handle_ << " }"
    [all...]
  /prebuilts/go/darwin-x86/src/plugin/
plugin.go 5 // Package plugin implements loading and symbol resolution of Go plugins.
7 // A plugin is a Go main package with exported functions and variables that
10 // go build -buildmode=plugin
12 // When a plugin is first opened, the init functions of all packages not
14 // A plugin is only initialized once, and cannot be closed.
18 package plugin package
20 // Plugin is a loaded Go plugin.
21 type Plugin struct {
23 err string // set if plugin failed to loa
    [all...]
  /prebuilts/go/linux-x86/src/plugin/
plugin.go 5 // Package plugin implements loading and symbol resolution of Go plugins.
7 // A plugin is a Go main package with exported functions and variables that
10 // go build -buildmode=plugin
12 // When a plugin is first opened, the init functions of all packages not
14 // A plugin is only initialized once, and cannot be closed.
18 package plugin package
20 // Plugin is a loaded Go plugin.
21 type Plugin struct {
23 err string // set if plugin failed to loa
    [all...]
  /external/parameter-framework/upstream/test/functional-tests/include/
Config.hpp 67 struct Plugin
71 /** Each plugin has a location and a path.
75 using Plugins = Plugin::Collection;
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
Plugin.java 30 * plugin.onCreate(Context sysuiContext, Context pluginContext);
33 * pluginListener.onPluginConnected(Plugin p);
34 * --- This lets the plugin hook know that a plugin is now connected.
36 * ** Any other calls back and forth between sysui/plugin **
38 * pluginListener.onPluginDisconnected(Plugin p);
39 * --- Lets the plugin hook know that it should stop interacting with
40 * this plugin and drop all references to it.
42 * plugin.onDestroy();
43 * --- Finally the plugin can perform any cleanup to ensure that its no
    [all...]
  /frameworks/base/core/java/android/webkit/
Plugin.java 26 * Represents a plugin (Java equivalent of the PluginPackageAndroid
34 public class Plugin {
61 public Plugin(String name,
173 * Invokes the click handler for this plugin.
200 // string of the plugin.
  /toolchain/binutils/binutils-2.27/gold/
plugin.h 0 // plugin.h -- plugin manager for gold -*- C++ -*-
30 #include "plugin-api.h"
51 // This class represents a single plugin library.
53 class Plugin
56 Plugin(const char* filename)
66 ~Plugin()
108 Plugin(const Plugin&);
109 Plugin& operator=(const Plugin&)
    [all...]
  /external/pdfium/third_party/lcms/src/
cmserr.c 70 cmsBool _cmsRegisterMemHandlerPlugin(cmsContext ContextID, cmsPluginBase* Plugin)
139 void _cmsInstallAllocFunctions(cmsPluginMemHandler* Plugin, _cmsMemPluginChunkType* ptr)
141 if (Plugin == NULL) {
147 ptr ->MallocPtr = Plugin -> MallocPtr;
148 ptr ->FreePtr = Plugin -> FreePtr;
149 ptr ->ReallocPtr = Plugin -> ReallocPtr;
156 if (Plugin ->MallocZeroPtr != NULL) ptr ->MallocZeroPtr = Plugin -> MallocZeroPtr;
157 if (Plugin ->CallocPtr != NULL) ptr ->CallocPtr = Plugin -> CallocPtr
    [all...]
cmsplugin.c 505 // Plugin memory management -------------------------------------------------------------------------------------------------
537 cmsPluginBase* Plugin;
539 for (Plugin = (cmsPluginBase*) Plug_in;
540 Plugin != NULL;
541 Plugin = Plugin -> Next) {
543 if (Plugin -> Magic != cmsPluginMagicNumber) {
544 cmsSignalError(id, cmsERROR_UNKNOWN_EXTENSION, "Unrecognized plugin");
548 if (Plugin ->ExpectedVersion > LCMS_VERSION) {
549 cmsSignalError(id, cmsERROR_UNKNOWN_EXTENSION, "plugin needs Little CMS %d, current version is %d"
    [all...]
cmsgamma.c 129 cmsPluginParametricCurves* Plugin = (cmsPluginParametricCurves*) Data;
142 fl ->Evaluator = Plugin ->Evaluator;
143 fl ->nFunctions = Plugin ->nFunctions;
150 memmove(fl->FunctionTypes, Plugin ->FunctionTypes, fl->nFunctions * sizeof(cmsUInt32Number));
151 memmove(fl->ParameterCount, Plugin ->ParameterCount, fl->nFunctions * sizeof(cmsUInt32Number));
    [all...]
cmsintrp.c 62 cmsPluginInterpolation* Plugin = (cmsPluginInterpolation*) Data;
72 ptr ->Interpolators = Plugin ->InterpolatorsFactory;
    [all...]
cmsxform.c 636 // Allocates memory for transform plugin factory
685 cmsPluginTransform* Plugin = (cmsPluginTransform*) Data;
697 if (Plugin->factories.xform == NULL) return FALSE;
704 if (Plugin->base.ExpectedVersion < 2080) {
712 fl->Factory = Plugin->factories.xform;
760 _cmsTransformCollection* Plugin;
775 for (Plugin = ctx->TransformCollection;
776 Plugin != NULL;
777 Plugin = Plugin->Next)
    [all...]
cmscnvrt.c 43 // This is the default routine for ICC-style intents. A user may decide to override it by using a plugin.
    [all...]
cmsopt.c     [all...]
cmspack.c     [all...]
  /external/golang-protobuf/protoc-gen-go/generator/
generator.go 33 The code generator for the plugin for the Google protocol buffer compiler.
58 plugin "github.com/golang/protobuf/protoc-gen-go/plugin"
67 // A Plugin provides functionality to add to the output during Go code generation,
69 type Plugin interface {
70 // Name identifies the plugin.
75 // Generate produces the code generated by the plugin for this file,
83 var plugins []Plugin
85 // RegisterPlugin installs a (second-order) plugin to be run when the Go output is generated.
87 func RegisterPlugin(p Plugin) {
    [all...]
  /frameworks/base/services/core/java/com/android/server/power/batterysaver/
BatterySaverController.java 94 private final Plugin[] mPlugins;
107 * Plugin interface. All methods are guaranteed to be called on the same (handler) thread.
109 public interface Plugin {
159 final ArrayList<Plugin> plugins = new ArrayList<>();
162 mPlugins = plugins.toArray(new Plugin[plugins.size()]);
237 for (Plugin p : mPlugins) {
337 for (Plugin p : mPlugins) {
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-repository-metadata/2.0.9/
maven-repository-metadata-2.0.9.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
maven-plugin-registry-2.2.1.jar 
maven-repository-metadata-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-plugin-registry/2.0.9/
maven-plugin-registry-2.0.9.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-plugin-registry/2.2.1/
maven-plugin-registry-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-repository-metadata/2.2.1/
maven-repository-metadata-2.2.1.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.runtime_3.11.0.v20150405-1723.jar 

Completed in 785 milliseconds

1 2 3 4 5