Home
last modified time | relevance | path

Searched full:plugin (Results 1 – 25 of 9488) sorted by relevance

12345678910>>...380

/aosp_15_r20/out/soong/.intermediates/packages/modules/OnDevicePersonalization/pluginlib/ondevicepersonalization-plugin-lib/android_common_apex33/javac/
Dondevicepersonalization-plugin-lib.jar ... ) } com/android/ondevicepersonalization/libraries/plugin/Plugin.class Plugin.java package com. ...
/aosp_15_r20/prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy-parent/1.12.16/
H A Dbyte-buddy-parent-1.12.16.pom37 …- com.github.ferstl:jitwatch-jarscan-maven-plugin:scan - Finds all methods above HotSpot's inlinin…
54 <module>byte-buddy-maven-plugin</module>
55 <module>byte-buddy-gradle-plugin</module>
75 <version.plugin.clean>3.2.0</version.plugin.clean>
76 <version.plugin.bundle>5.1.7</version.plugin.bundle>
77 <version.plugin.compiler>3.10.1</version.plugin.compiler>
78 <version.plugin.install>3.0.1</version.plugin.install>
79 <version.plugin.deploy>3.0.0</version.plugin.deploy>
80 <version.plugin.staging>1.6.13</version.plugin.staging>
81 <version.plugin.versions>2.11.0</version.plugin.versions>
[all …]
/aosp_15_r20/external/threetenbp/
H A Dpom.xml150 <plugin>
152 <artifactId>maven-enforcer-plugin</artifactId>
168 </plugin>
170 <plugin>
172 <artifactId>maven-surefire-plugin</artifactId>
196 </plugin>
198 <plugin>
200 <artifactId>maven-bundle-plugin</artifactId>
201 <version>${maven-bundle-plugin.version}</version>
217 </plugin>
[all …]
/aosp_15_r20/prebuilts/tools/common/m2/repository/joda-time/joda-time/2.9.1/
H A Djoda-time-2.9.1.pom281 <plugin>
283 <artifactId>exec-maven-plugin</artifactId>
322 </plugin>
323 <plugin>
325 <artifactId>maven-surefire-plugin</artifactId>
331 </plugin>
332 <plugin>
334 <artifactId>maven-jar-plugin</artifactId>
376 </plugin>
377 <plugin>
[all …]
/aosp_15_r20/external/tinycompress/
H A Dcompress_plugin.c69 struct compress_plugin *plugin; member
76 struct compress_plugin *plugin = plug_data->plugin; in compress_plug_get_caps() local
78 return plugin->ops->get_caps(plugin, caps); in compress_plug_get_caps()
84 struct compress_plugin *plugin = plug_data->plugin; in compress_plug_set_params() local
87 if (plugin->state == COMPRESS_PLUG_STATE_RUNNING) in compress_plug_set_params()
88 return plugin->ops->set_params(plugin, params); in compress_plug_set_params()
89 else if (plugin->state != COMPRESS_PLUG_STATE_OPEN) in compress_plug_set_params()
97 rc = plugin->ops->set_params(plugin, params); in compress_plug_set_params()
99 plugin->state = COMPRESS_PLUG_STATE_SETUP; in compress_plug_set_params()
107 struct compress_plugin *plugin = plug_data->plugin; in compress_plug_avail() local
[all …]
/aosp_15_r20/external/snakeyaml/
H A Dpom.xml18 <maven-bundle-plugin.version>5.1.8</maven-bundle-plugin.version>
19 <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version><!-- for Github CI -->
20 <cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
21 <maven-site-plugin.version>3.12.1</maven-site-plugin.version>
22 <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
112 <plugin>
114 <artifactId>maven-resources-plugin</artifactId>
115 <version>${maven-resources-plugin.version}</version>
116 </plugin>
117 <plugin>
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/modules/OnDevicePersonalization/pluginlib/ondevicepersonalization-plugin-lib/android_common_apex33/turbine/
Dondevicepersonalization-plugin-lib.jar ... ) } com/android/ondevicepersonalization/libraries/plugin/Plugin.class <Unknown> package com.
/aosp_15_r20/external/owasp/java-encoder/
Dpom.xml162 <plugin>
164 <artifactId>maven-compiler-plugin</artifactId>
166 </plugin>
167 <plugin>
169 <artifactId>maven-jar-plugin</artifactId>
171 </plugin>
172 <plugin>
174 <artifactId>maven-source-plugin</artifactId>
176 </plugin>
177 <plugin>
[all …]
/aosp_15_r20/external/pigweed/pw_cli/py/pw_cli/
H A Dplugins.py14 """Provides general purpose plugin functionality.
16 As used in this module, a plugin is a Python object associated with a name.
17 Plugins are registered in a Registry. The plugin object is typically a function,
23 - Registered in a Python file using a decorator (@my_registry.plugin).
50 """Indicates that a plugin is invalid or cannot be registered."""
72 class Plugin: class
73 """Represents a Python entity registered as a plugin.
75 Each plugin resolves to a Python object, typically a function.
85 ) -> Plugin:
86 """Creates a plugin by module and attribute name.
[all …]
/aosp_15_r20/external/zxing/
H A Dpom.xml69 <proguard.plugin.version>2.6.0</proguard.plugin.version>
77 <plugin>
79 <artifactId>maven-javadoc-plugin</artifactId>
80 </plugin>
81 <plugin>
83 <artifactId>maven-source-plugin</artifactId>
84 </plugin>
85 <plugin>
87 <artifactId>maven-site-plugin</artifactId>
89 </plugin>
[all …]
/aosp_15_r20/frameworks/base/packages/SystemUI/docs/
H A Dplugins.md8 ## Adding Plugin Hooks
10 Existing plugin hooks can be found [here](/packages/SystemUI/docs/plugin_hooks.md).
14 The first step of adding a plugin hook to SysUI is to define the interface layer between the plugin
16plugin library, under com.android.systemui.plugin or sub-packages.  The main interface (entry poi…
19 …e plugin library should be tagged with a version, they should also be tagged with an action if the…
25 public interface MyPlugin extends Plugin {
32 ### Plugin Listener
34 To actually listen for plugins, you implement a plugin listener that has the following interface.
37 public interface PluginListener<T extends Plugin> {
39     * Called when the plugin has been loaded and is ready to be used.
[all …]
/aosp_15_r20/external/tinyalsa/
H A Dpcm_plugin.c81 struct pcm_plugin *plugin; member
96 struct pcm_plugin *plugin = plug_data->plugin; in pcm_plug_close() local
98 plugin->ops->close(plugin); in pcm_plug_close()
188 static int pcm_plug_get_params(struct pcm_plugin *plugin, in pcm_plug_get_params() argument
197 * using the hw_param constraints provided by plugin in pcm_plug_get_params()
198 * via the plugin->constraints in pcm_plug_get_params()
203 plugin->constraints->access); in pcm_plug_get_params()
205 plugin->constraints->format); in pcm_plug_get_params()
211 &plugin->constraints->bit_width, 1); in pcm_plug_get_params()
213 &plugin->constraints->channels, 1); in pcm_plug_get_params()
[all …]
H A Dmixer_plugin.c59 struct mixer_plugin *plugin; member
67 struct mixer_plugin *plugin = plug_data->plugin; in mixer_plug_get_elem_id() local
70 if (offset >= plugin->num_controls) { in mixer_plug_get_elem_id()
75 ctl = plugin->controls + offset; in mixer_plug_get_elem_id()
133 void mixer_plug_notifier_cb(struct mixer_plugin *plugin) in mixer_plug_notifier_cb() argument
135 pthread_mutex_lock(&plugin->mutex); in mixer_plug_notifier_cb()
136 plugin->event_cnt++; in mixer_plug_notifier_cb()
137 pthread_mutex_unlock(&plugin->mutex); in mixer_plug_notifier_cb()
138 eventfd_write(plugin->eventfd, 1); in mixer_plug_notifier_cb()
146 struct mixer_plugin *plugin = plug_data->plugin; in mixer_plug_read_event() local
[all …]
/aosp_15_r20/external/jacoco/org.jacoco.build/
H A Dpom.xml96 <module>../jacoco-maven-plugin</module>
315 <plugin>
317 <artifactId>maven-antrun-plugin</artifactId>
319 </plugin>
320 <plugin>
322 <artifactId>maven-assembly-plugin</artifactId>
324 </plugin>
325 <plugin>
327 <artifactId>maven-clean-plugin</artifactId>
329 </plugin>
[all …]
/aosp_15_r20/external/tinyalsa_new/src/
H A Dpcm_plugin.c46 #include <tinyalsa/plugin.h>
79 /** pointer to plugin operation */
81 struct pcm_plugin *plugin; member
114 struct pcm_plugin *plugin = plug_data->plugin; in pcm_plug_close() local
116 plug_data->ops->close(plugin); in pcm_plug_close()
209 static int pcm_plug_get_params(struct pcm_plugin *plugin, in pcm_plug_get_params() argument
218 * using the hw_param constraints provided by plugin in pcm_plug_get_params()
219 * via the plugin->constraints in pcm_plug_get_params()
224 plugin->constraints->access); in pcm_plug_get_params()
226 plugin->constraints->format); in pcm_plug_get_params()
[all …]
H A Dmixer_plugin.c30 #include <tinyalsa/plugin.h>
54 /** Encapulates the mixer plugin specific data */
56 /** Card number associated with the plugin */
60 /** Pointer to the plugin's ops */
62 /** Pointer to plugin responsible to service the controls */
63 struct mixer_plugin *plugin; member
64 /** Handle to the plugin library */
71 struct mixer_plugin *plugin = plug_data->plugin; in mixer_plug_get_elem_id() local
74 if (offset >= plugin->num_controls) { in mixer_plug_get_elem_id()
80 ctl = plugin->controls + offset; in mixer_plug_get_elem_id()
[all …]
/aosp_15_r20/external/flatbuffers/grpc/
H A Dpom.xml64 … os-maven-plugin is a Maven extension/plugin that generates various useful platform-dependent
68 <artifactId>os-maven-plugin</artifactId>
74 <plugin>
75 <artifactId>maven-compiler-plugin</artifactId>
77 </plugin>
78 <plugin>
79 <artifactId>maven-jar-plugin</artifactId>
81 </plugin>
82 <plugin>
83 <artifactId>maven-source-plugin</artifactId>
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/36/
D3695272293b60f57b4e40c0979ea4e833dd00e208 from: "platform_testing/libraries/sts-common-util/autorepro/plugin/autorepro/build.gradle.kts"
9 to: "platform_testing/libraries/sts-common-util/autorepro/plugin/autorepro/build.gradle.kts"
12 …from: "platform_testing/libraries/sts-common-util/autorepro/plugin/autorepro/src/main/kotlin/com/a…
13 …to: "platform_testing/libraries/sts-common-util/autorepro/plugin/autorepro/src/main/kotlin/com/and…
16 …from: "platform_testing/libraries/sts-common-util/autorepro/plugin/autorepro/src/main/kotlin/com/a…
17 …to: "platform_testing/libraries/sts-common-util/autorepro/plugin/autorepro/src/main/kotlin/com/and…
20 …from: "platform_testing/libraries/sts-common-util/autorepro/plugin/autorepro/src/main/kotlin/com/a…
21 …to: "platform_testing/libraries/sts-common-util/autorepro/plugin/autorepro/src/main/kotlin/com/and…
24 …from: "platform_testing/libraries/sts-common-util/autorepro/plugin/autorepro/src/main/kotlin/com/a…
25 …to: "platform_testing/libraries/sts-common-util/autorepro/plugin/autorepro/src/main/kotlin/com/and…
[all …]
/aosp_15_r20/external/kotlinc/lib/
HDkotlin-scripting-compiler.jar ... org/jetbrains/kotlin/scripting/compiler/plugin/ org/jetbrains/kotlin/scripting/compiler ...
HDscripting-compiler.jar ... org/jetbrains/kotlin/scripting/compiler/plugin/ org/jetbrains/kotlin/scripting/compiler ...
/aosp_15_r20/external/slf4j/parent/
H A Dpom.xml44 <maven-site-plugin.version>3.7.1</maven-site-plugin.version>
45 <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
46 <maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
47 <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
48 <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
49 <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version>
50 <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
51 <maven-jxr-plugin.version>3.1.1</maven-jxr-plugin.version>
52 <maven-bundle-plugin.version>5.1.9</maven-bundle-plugin.version>
110 <plugin>
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/plugin/SystemUIPluginLib/android_common/kotlin/
DSystemUIPluginLib.jar.rsp1plugin/bcsmartspace/src/com/android/systemui/plugins/BcSmartspaceDataPlugin.java frameworks/base/p…
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/plugin/SystemUIPluginLib/android_common/kapt/
Dstubs.jar.rsp1plugin/bcsmartspace/src/com/android/systemui/plugins/BcSmartspaceDataPlugin.java frameworks/base/p…
/aosp_15_r20/external/javaparser/
H A Dpom.xml157 <plugin>
159 <artifactId>maven-compiler-plugin</artifactId>
164 </plugin>
165 <plugin>
167 <artifactId>maven-source-plugin</artifactId>
176 </plugin>
180 <plugin>
182 <artifactId>ph-javacc-maven-plugin</artifactId>
184 </plugin>
185 <plugin>
[all …]
/aosp_15_r20/prebuilts/runtime/mainline/i18n/test-exports/linux_glibc/include/external/icu/icu4c/source/common/unicode/
H A Dicuplug.h20 * \brief C API: ICU Plugin API
22 * <h2>C API: ICU Plugin API</h2>
49 * <li>ENTRYPOINT is the short (undecorated) symbol name of the plugin's
53 * the plugin.</li>
64 * which cause ICU to be 'initialized'. If a plugin is low level but
65 * causes ICU to allocate memory or become initialized, that plugin is said
72 * <h3>Implementing a Plugin</h3>
77 * uplug_setPlugName(plug, "Simple Plugin");
88 * <p>The UPlugData* is an opaque pointer to the plugin-specific data, and is
92 * <ol><li>The plugin MUST always return UPLUG_TOKEN as a return value- to
[all …]

12345678910>>...380