Lines Matching defs:name

17  * information: Portions Copyright [yyyy] [name of copyright owner]
37 * and name. A single probe description may identify a single DTrace
63 * Instance with empty provider, module, function, and name fields
72 * Enumerates the provider, module, function, and name fields of a
82 /** Probe name (unqualified) */
92 "function", "name"});
110 private final String name;
113 * Creates a fully qualified probe description from the name given
114 * in the format <i>{@code provider:module:function:name}</i> or
116 * probe name.
118 * @param probeName either the fully qualified name in the format
119 * <i>{@code provider:module:function:name}</i> or else (if no colon
120 * is present) the unqualified name interpreted as {@code
141 name = ((probeName == null) ? "" : probeName);
146 name = p.name;
152 name = ((probeName == null) ? "" : probeName);
157 * Creates a probe description that specifies the probe name
158 * qualified only by the function name.
170 * Creates a probe description that specifies the probe name
171 * qualified by the function name and module name.
188 * @param probeProvider provider name, may be null or empty to match
190 * @param probeModule module name, may be null or empty to match all
192 * @param probeFunction function name, may be null or empty to match
194 * @param probeName unqualified probe name, may be null or empty to
206 name = ((probeName == null) ? "" : probeName);
228 * <i>provider:module:function:name</i>
302 * Gets the provider name.
304 * @return non-null provider name, may be an empty string to
314 * Gets the module name.
316 * @return non-null module name, may be an empty string to indicate
326 * Gets the function name.
328 * @return non-null function name, may be an empty string to
338 * Gets the unqualified probe name.
340 * @return non-null probe name, may be an empty string to indicate
346 return name;
350 * Returns {@code true} if provider, module, function, and name are
369 if (name.length() > 0) {
406 * unqualified name only if all other fields are equal).
426 cmp = name.compareTo(p.name);
450 hash = (37 * hash) + name.hashCode();
469 if (name == null) {
470 throw new InvalidObjectException("name is null");
478 * <i>provider:module:function:name</i>
495 buf.append(name);