Searched defs:name (Results 651 - 675 of 3188) sorted by relevance

<<21222324252627282930>>

/illumos-gate/usr/src/lib/libdiskmgt/common/
H A Dpath.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
81 if (dp->name != NULL) {
99 path_get_descriptor_by_name(char *name, int *errp) argument
111 if (libdiskmgt_str_eq(name, paths[i]->p.path->name)) {
137 return (desc->p.path->name);
174 * This is called when we have a name in the descriptor name field. That
176 * association from a drive to the path. Since we filled in the name with
188 if (devid_str_decode(dp->name,
[all...]
/illumos-gate/usr/src/lib/libdladm/common/
H A Dlibdlsim.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
473 dladm_simnet_persist_conf(dladm_handle_t handle, const char *name, argument
481 if ((status = dladm_create_conf(handle, name, attrp->sna_link_id,
/illumos-gate/usr/src/lib/libdll/amd64/src/lib/libdll/
H A Ddlldefs.h84 char* prefix; /* library name prefix */
85 char* suffix; /* library name suffix */
96 char* name; member in struct:Dllent_s
/illumos-gate/usr/src/lib/libdll/common/
H A Ddllscan.c68 char name[1]; member in struct:Uniq_s
212 dllsopen(const char* lib, const char* name, const char* version) argument
257 if (!name || !*name || *name == '-' && !*(name + 1))
259 name = (const char*)"?*";
262 else if (t = strrchr(name, '/'))
264 if (!(scan->pb = vmnewof(vm, 0, char, t - (char*)name, 2)))
266 memcpy(scan->pb, name,
[all...]
/illumos-gate/usr/src/lib/libdll/i386/src/lib/libdll/
H A Ddlldefs.h84 char* prefix; /* library name prefix */
85 char* suffix; /* library name suffix */
96 char* name; member in struct:Dllent_s
/illumos-gate/usr/src/lib/libdll/sparc/src/lib/libdll/
H A Ddlldefs.h84 char* prefix; /* library name prefix */
85 char* suffix; /* library name suffix */
96 char* name; member in struct:Dllent_s
/illumos-gate/usr/src/lib/libdll/sparcv9/src/lib/libdll/
H A Ddlldefs.h84 char* prefix; /* library name prefix */
85 char* suffix; /* library name suffix */
96 char* name; member in struct:Dllent_s
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_xlator.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
48 dt_xlator_create_member(const char *name, ctf_id_t type, ulong_t off, void *arg) argument
78 * appropriate name, output type, and member expression set to 'enp'.
86 mnp->dn_membname = strdup(name);
99 const char *name, dt_node_t *members, dt_node_t *nodes)
131 dxp->dx_ident = dt_ident_create(name ? name : "T",
142 * If an input parameter name is given, this is a static translator
145 if (name != NULL) {
204 if (name
97 dt_xlator_create(dtrace_hdl_t *dtp, const dtrace_typeinfo_t *src, const dtrace_typeinfo_t *dst, const char *name, dt_node_t *members, dt_node_t *nodes) argument
370 dt_xlator_member(dt_xlator_t *dxp, const char *name) argument
[all...]
/illumos-gate/usr/src/lib/libdtrace/sparc/
H A Ddt_isadep.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
322 char name[sizeof (i) * 2 + 1]; local
325 (void) sprintf(name, "%lx", i);
326 if (gmatch(name, pattern))
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DAggregate.java17 * information: Portions Copyright [yyyy] [name of copyright owner]
64 // Map must not have same name as named PersistenceDelegate property
176 * Gets the aggregation with the given name if it exists in this
179 * @param name the name of the desired aggregation, or empty string
181 * aggregation is used anytime a name does not follow the
185 * {@code Aggregation} with the name "counts".
187 * @return {@code null} if no aggregation by the given name exists
192 getAggregation(String name) argument
202 name
273 filterUnnamedAggregationName(String name) argument
[all...]
H A DAggregation.java17 * information: Portions Copyright [yyyy] [name of copyright owner]
35 * A snapshot of a DTrace aggregation. The name of an {@code
38 * results in an {@code Aggregation} named "a" (the name does not
42 * {@code Aggregation} instance whose name is the empty string, for
82 new String[] {"name", "ID", "records"})
100 private String name; field in class:Aggregation
110 name = Aggregate.filterUnnamedAggregationName(aggregationName);
116 * Creates an aggregation with the given name, ID, and records.
119 * @param aggregationName the name of this aggregation, empty string
125 * @throws NullPointerException if the specified name o
[all...]
H A DProbeDescription.java17 * 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; field in class:ProbeDescription
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
[all...]
/illumos-gate/usr/src/lib/libsum/common/
H A Dsum-ast4.c68 ast4_open(const Method_t* method, const char* name) argument
75 p->name = name;
H A Dsum-crc.c117 crc_open(const Method_t* method, const char* name) argument
131 sum->name = name;
134 if(!strcmp(name, "crc-0x04c11db7-rotate-done-size"))
148 s = name;
/illumos-gate/usr/src/lib/libtecla/common/
H A Dpathutil.c26 * Except as contained in this notice, the name of a copyright holder
75 path->name = NULL;
86 path->name = (char *)malloc(path->dim * sizeof(char));
87 if(!path->name) {
105 if(path->name)
106 free(path->name);
129 path->name[0] = '\0';
130 return path->name;
148 * return char * The pathname string path->name[], which may
167 pathlen = strlen(path->name);
316 char *name = (char *) realloc(path->name, dim); local
[all...]
/illumos-gate/usr/src/lib/libtnfctl/
H A Dsym.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
30 * - return an address for a symbol name
31 * - return a symbol name for an address
68 static tnfctl_errcode_t sym_match(char *name, uintptr_t addr, void *sym_entry,
71 static tnfctl_errcode_t sym_matchname(char *name, uintptr_t addr,
164 * symbol in the object specified by base name
190 /* find the last occurrence of / in the name */
218 * _tnfctl_sym_findname() - determines the name of a function from its address.
235 /* for every object in list, search for name */
266 * sym_findname_in_obj() - determines the name o
307 sym_match(char *name, uintptr_t addr, void *sym_entry, tnfctl_elf_search_t *search_info_p) argument
350 sym_matchname(char *name, uintptr_t addr, void *sym_entry, tnfctl_elf_search_t * search_info_p) argument
[all...]
/illumos-gate/usr/src/lib/libtnfprobe/
H A Dtnf_trace.h18 * information: Portions Copyright [yyyy] [name of copyright owner]
90 tnf_name_t name; member in struct:__anon4136
/illumos-gate/usr/src/lib/libvolmgt/common/
H A Dvolmgt.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
83 * path - the name of the device in /dev. For example,
114 * path - the name of the device in /dev. For example,
141 * the volume management name space.
170 * name space is mounted.
200 * volmgt_symname: Returns the volume management symbolic name
202 * what the symbolic name (e.g. "floppy0") for the /dev/rdiskette
206 * path - a string containing the /dev device name. For example,
213 * pointer to a string containing the symbolic name.
239 * symbolic name
583 char *name; member in struct:alias
[all...]
/illumos-gate/usr/src/lib/libwrap/
H A Dhosts_access.c257 /* host_match - match host name and/or address against pattern */
269 * The KNOWN pattern requires that both address AND name be known; some
271 * patterns are satisfied when either the address OR the name match.
284 } else if (STR_EQ(tok, "KNOWN")) { /* check address and name */
285 char *name = eval_hostname(host); local
286 return (STR_NE(eval_hostaddr(host), unknown) && HOSTNAME_KNOWN(name));
287 } else if (STR_EQ(tok, "LOCAL")) { /* local: no dots in name */
288 char *name = eval_hostname(host); local
289 return (strchr(name, '.') == 0 && HOSTNAME_KNOWN(name));
[all...]
/illumos-gate/usr/src/lib/libzonecfg/common/
H A Dgetzoneent.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
94 char *name; local
98 name = strdup(ze->zone_name);
100 return (name);
250 * This function adds or removes a zone name et al. to the index file.
260 * A zero-length ze->zone_newname means leave the existing name
378 * Skip over the zone name. Because we've already matched the
380 * name is present and correctly formed. No need to check.
416 /* If a new name is supplied, use it. */
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_glob.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
66 __local_addUpdate(log_entry_t type, char *name, int numAttr, nis_attr *attr, argument
81 __local__nis_lock_db_table(nis_name name, int readwrite, int *trylock, argument
87 __local__nis_ulock_db_table(nis_name name, int readwrite, int remove, argument
H A Dnis_hashitem.h18 * information: Portions Copyright [yyyy] [name of copyright owner]
44 nis_name name; member in struct:__nis_item_item
/illumos-gate/usr/src/lib/libnsctl/common/
H A Dmachdep.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
239 * return the system id corresponding to name
244 nsc_name_to_id(char *name, int *id) argument
258 if (strcmp(name, nodes[slot].nc_nodename) == 0) {
273 * return the node name corresponding to system id
280 nsc_id_to_name(char **name, int id) argument
288 *name = 0;
299 *name = foundname;
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dgetrpcent_r.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
50 p->name = NSS_DBNAM_RPC;
55 getrpcbyname_r(const char *name, struct rpcent *result, char *buffer, argument
61 if (name == (const char *)NULL) {
66 arg.key.name = name;
139 p++; /* Skip over the canonical name */
/illumos-gate/usr/src/lib/libnwam/common/
H A Dlibnwam_backend.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
175 char *dbname, char *name, void *objp)
192 * If "dbname" and "name" are non-NULL, copy in the actual dbname
193 * and name values from the door arg since both may have been changed
199 if (name != NULL && strcmp(name, arg->nwbda_object) != 0)
200 (void) strlcpy(name, arg->nwbda_object, strlen(name) + 1);
174 nwam_read_object_from_backend_door_arg(nwam_backend_door_arg_t *arg, char *dbname, char *name, void *objp) argument

Completed in 133 milliseconds

<<21222324252627282930>>