Searched defs:prefix (Results 1 - 8 of 8) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DNamedThreadFactory.java31 * The {@code NamedThreadFactory} class adds a prefix to the names of the {@code
40 private String prefix; field in class:NamedThreadFactory
47 * Constructs a {@code NamedThreadFactory} using the given prefix and thread
50 public NamedThreadFactory(String prefix, ThreadFactory factory) { argument
51 this.prefix = prefix;
56 * Constructs a {@code NamedThreadFactory} using the given prefix and the
59 public NamedThreadFactory(String prefix) { argument
60 this(prefix, Executors.defaultThreadFactory());
71 String prefix
95 setPrefix(String prefix) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/apache/src/java/vpanels/app/apache/com/oracle/solaris/vp/panels/apache/client/swing/
H A DApacheUtil.java40 String prefix) throws ScfException {
53 // Property names take the form <prefix><n>, where n > 0
55 name = prefix + i++;
39 getNextAvailablePropertyName(SmfPropertyGroupInfo info, String prefix) argument
H A DPropertyGroupNamePool.java45 private String prefix; field in class:PropertyGroupNamePool
54 public PropertyGroupNamePool(ServiceBean service, String prefix) argument
58 this.prefix = prefix;
68 String name = prefix + next;
144 if (name.startsWith(prefix)) {
145 return Integer.parseInt(name.substring(prefix.length()));
/solaris-userland-s11u3/components/apache2/mod_auth_gss/
H A Dmod_auth_gss.c195 gss_error_msg(apr_pool_t *p, OM_uint32 maj, OM_uint32 min, char *prefix) argument
201 char *err_msg = (char *)apr_pstrdup(p, prefix);
/solaris-userland-s11u3/components/apache24/mod_auth_gss/
H A Dmod_auth_gss.c155 gss_error_msg(apr_pool_t *p, OM_uint32 maj, OM_uint32 min, char *prefix) argument
161 char *err_msg = (char *)apr_pstrdup(p, prefix);
/solaris-userland-s11u3/components/libusb/wrapper/src/
H A Dwr_libusb.h195 char *prefix; /* libusb_prefix symbol val */ member in struct:plugin_info
H A Dwr_libusb.c615 char *prefix; local
623 /* can have a valid handle but a null prefix */
627 p_info[pindex].prefix = *handle_libusb_prefix;
629 p_info[pindex].prefix = NULL;
632 prefix = p_info[pindex].prefix;
633 if (prefix != NULL) {
635 "load_plugin_syms():prefix is %s\n", prefix);
643 "could not alloc space for prefix\
661 wusb_symbol(char **init_str, int len, char *prefix, char *func_name) argument
[all...]
/solaris-userland-s11u3/components/open-fabrics/libibverbs/
H A Dsolaris_compatibility.c237 * Given a device name of the form <driver-prefix><instance>,
589 * Given a path extract the HCA dev name of the form <dev-prefix><dev-instance>
620 * Check whether a path starts with prefix, and if it does, remove it
621 * from the string. The prefix can also contain one %d scan argument.
624 check_path(char *path, cp_prefix_t prefix, unsigned int *arg) argument
628 switch (prefix) {
676 /* Unkown prefix */

Completed in 45 milliseconds