Home
last modified time | relevance | path

Searched refs:plugins (Results 1 – 25 of 232) sorted by relevance

12345678910

/third_party/libwebsockets/READMEs/
DREADME.lws_plugins.md3 Lws now offers apis to manage your own user plugins with `LWS_WITH_PLUGINS_API`.
4 Lws uses these apis internally for protocol plugins and event loop plugins
12 Lws plugins have a single exported struct with a specified header and a user
38 `_class` is shared by your plugins and used to select them from other kinds
40 `"myapp xxx plugin"` or whatever shared by all plugins of that class.
60 ## Building your own plugins
79 ## Bringing in plugins at runtime
81 Lws provides an api to import plugins into the process space and another to
82 remove and destroy plugins.
85 later destroy a whole class of plugins at once, and walk them via a linked-list,
[all …]
DREADME.event-libs.md35 And second, for distro packaging, the event lib support plugins can be separately
41 or on Windows you want plugins at all. CMake will detect these situations and
47 The produced plugins are named
56 The evlib plugins are installed alongside libwebsockets.so/.a into the configured
/third_party/icu/docs/userguide/icu4c/
Dplug-ins.md34 **--enable-plugins** and/or define **UCONFIG_ENABLE_PLUGINS=1** to enable the
42 The ICU plugin mechanism allows small code modules, called plugins, to be loaded
48 attempt to load plugins found in the list. plugins are called and can
50 service objects. At u_cleanup time, plugins have the opportunity to
57 Some sample plugins are available at:
133 which must be run BEFORE high level plugins, and before any operations
137 At load time, ICU first queries all plugins to determine their level,
138 then loads all 'low' plugins first, and then loads all 'high' plugins.
145 of plugins, with the "-L" option. It will list all loaded or
146 possibly-loaded plugins, give their level, and list any errors
[all …]
/third_party/libwebsockets/plugins/
DCMakeLists.txt34 # Either build the plugins as separate dynamic libs (LWS_WITH_PLUGINS)
77 INSTALL_DATADIR="${CMAKE_INSTALL_PREFIX}/plugins"
89 list(APPEND LWS_LIB_BUILD_INC_PATHS ../plugins/${PLUGIN_INCLUDE})
95 list(APPEND SOURCES ../plugins/${A})
101 list(APPEND SOURCES ../plugins/${A})
107 list(APPEND SOURCES ../plugins/${A})
207 include_directories("${PROJECT_SOURCE_DIR}/plugins/ssh-base/include")
223 # plugins
229 DESTINATION share/libwebsockets-test-server/plugins
230 COMPONENT plugins)
[all …]
/third_party/libphonenumber/debian/
Dmaven.ignoreRules1 # Maven ignore rules - ignore some Maven dependencies and plugins
18 org.apache.maven.plugins maven-assembly-plugin * * * *
19 org.apache.maven.plugins maven-javadoc-plugin * * * *
20 org.apache.maven.plugins maven-release-plugin * * * *
21 org.apache.maven.plugins maven-source-plugin * * * *
/third_party/alsa-lib/
DINSTALL62 The PCM plugins to build can be selected via --with-pcm-plugins
63 configure option. Multiple plugins can be passed by separation with
64 comma. For example, to select _only_ rate and linear plugins (and
65 disable other plugins), pass
66 --with-pcm-plugins=rate,linear
68 Passing "all" will select all available plugins (which is the default
71 When you select "plug" plugin, copy and linear plugins will be
119 JACK plugin is moved to alsa-plugins package.
/third_party/ffmpeg/libavcodec/
Dlibxvid.c389 xvid_enc_plugin_t plugins[4]; in xvid_encode_init() local
490 xvid_enc_create.plugins = plugins; in xvid_encode_init()
511 plugins[xvid_enc_create.num_plugins].func = xvid_ff_2pass; in xvid_encode_init()
512 plugins[xvid_enc_create.num_plugins].param = &rc2pass1; in xvid_encode_init()
542 plugins[xvid_enc_create.num_plugins].func = xvid_plugin_2pass2; in xvid_encode_init()
543 plugins[xvid_enc_create.num_plugins].param = &rc2pass2; in xvid_encode_init()
550 plugins[xvid_enc_create.num_plugins].func = xvid_plugin_single; in xvid_encode_init()
551 plugins[xvid_enc_create.num_plugins].param = &single; in xvid_encode_init()
561 plugins[xvid_enc_create.num_plugins].func = xvid_plugin_lumimasking; in xvid_encode_init()
565 plugins[xvid_enc_create.num_plugins].param = in xvid_encode_init()
[all …]
/third_party/weex-loader/
Dbabel.config.js20 const plugins = [
35 plugins.push(...liteArray);
39 plugins,
/third_party/typescript/src/testRunner/unittests/tsserver/
Dplugins.ts39 plugins: [
74 plugins: [
110 plugins: [{ name: "some-plugin" }]
140 plugins: [{ name: "some-other-plugin" }]
/third_party/libwebsockets/lib/secure-streams/
DCMakeLists.txt111 list(APPEND SSP_SRCS plugins/${NAME}/${S2})
115 list(APPEND SSP_SRCS plugins/${NAME}/${S3})
119 list(APPEND SSP_SRCS plugins/${NAME}/${S4})
123 list(APPEND SSP_SRCS plugins/${NAME}/${S5})
127 list(APPEND SSP_SRCS plugins/${NAME}/${S6})
Dsecure-streams.c863 if (h->policy->plugins[0] && h->policy->plugins[0]->munge) in _lws_ss_client_connect()
864 h->policy->plugins[0]->munge(h, path, h->context->max_http_header_data); in _lws_ss_client_connect()
1038 if (pol->plugins[0]) in lws_ss_create()
1039 size += pol->plugins[0]->alloc; in lws_ss_create()
1040 if (pol->plugins[1]) in lws_ss_create()
1041 size += pol->plugins[1]->alloc; in lws_ss_create()
1094 if (pol->plugins[0]) { in lws_ss_create()
1096 p += pol->plugins[0]->alloc; in lws_ss_create()
1098 if (pol->plugins[1]) { in lws_ss_create()
1100 p += pol->plugins[1]->alloc; in lws_ss_create()
/third_party/ntfs-3g/src/
Dntfs-3g_common.c810 plugin->next = ctx->plugins;
811 ctx->plugins = plugin;
842 for (plugin=ctx->plugins; plugin && (plugin->tag != seltag);
893 while (ctx->plugins) {
896 next = ctx->plugins->next;
897 if (ctx->plugins->handle)
898 dlclose(ctx->plugins->handle);
899 free(ctx->plugins);
900 ctx->plugins = next;
/third_party/libwebsockets/plugin-standalone/
DCMakeLists.txt67 INSTALL_DATADIR="${CMAKE_INSTALL_PREFIX}/plugins"
74 DESTINATION share/libwebsockets-test-server/plugins
75 COMPONENT plugins)
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-proxy-fallback/
DCMakeLists.txt12 # to the lws plugins dir so it can pick up the plugin source. Eg,
13 # cmake . -DLWS_PLUGINS_DIR=~/libwebsockets/plugins
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-proxy/
DCMakeLists.txt12 # to the lws plugins dir so it can pick up the plugin source. Eg,
13 # cmake . -DLWS_PLUGINS_DIR=~/libwebsockets/plugins
DREADME.md13 ./plugins directory can be found, since it relies on including the source
17 $ cmake . -DLWS_PLUGINS_DIR=~/libwebsockets/plugins && make
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-deaddrop/
DCMakeLists.txt12 # to the lws plugins dir so it can pick up the plugin source. Eg,
13 # cmake . -DLWS_PLUGINS_DIR=~/libwebsockets/plugins
/third_party/typescript/tests/baselines/reference/
DindexSignatures1.js238 const plugins = { variable
243 plugins[system][SomeSytePlugin] = () => console.log('awsome'); function
244 plugins[system][SomeSytePlugin]();
448 const plugins = { variable
452 plugins[system][SomeSytePlugin] = () => console.log('awsome');
453 plugins[system][SomeSytePlugin]();
623 declare const plugins: {
DindirectJsRequireRename.baseline.jsonc1 // === /lib/plugins/aws/package/compile/events/httpApi/index.js ===
123 "fileName": "/lib/plugins/aws/package/compile/events/httpApi/index.js",
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-indexed-signatures/
Darkts-no-indexed-signatures-2-error.ets17 // Counterexample: Register and access plugins in the application, using the string key as the plug…
21 const plugins: PluginRegistry = { pluginA: () => {}, pluginB: () => {} }
/third_party/icu/icu4c/source/tools/icuinfo/
Dicuplugins_windows_sample.txt46 ## later plugins to fail to load.
50 ## It will be loaded after the low level plugins.
54 ## It will be loaded before the high level plugins.
/third_party/skia/third_party/externals/icu/source/tools/icuinfo/
Dicuplugins_windows_sample.txt46 ## later plugins to fail to load.
50 ## It will be loaded after the low level plugins.
54 ## It will be loaded before the high level plugins.
/third_party/typescript/tests/cases/conformance/types/members/
DindexSignatures1.ts241 const plugins = { constant
246 plugins[system][SomeSytePlugin] = () => console.log('awsome');
247 plugins[system][SomeSytePlugin]();
/third_party/grpc/
Dgrpc.spec42 %package plugins
43 Summary: Protocol buffers compiler plugins for gRPC
48 %description plugins
127 %files plugins
/third_party/lwip/src/netif/ppp/
DPPPD_FOLLOWUP40 2010-03-06 - Install pppol2tp plugins with sane permissions
56 Don't care, is a patch for pppd/plugins/rp-pppoe/plugin.c which is not part
138 This is just a patch that adds plugins hooks for IPv6, the plugin interface
139 was disabled because we don't have .so plugins in embedded.
214 2013-02-03 - plugins/passprompt: Fix potential out-of-bounds array reference
217 Plugin patch, we do not have plugins.
251 2013-05-11 - plugins/radius: Handle bindaddr keyword in radiusclient.conf

12345678910