Searched defs:existing (Results 1 - 11 of 11) sorted by relevance

/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPV1SSrvReg.java145 // Perform lookup for existing.
176 SrvLocMsg makeReply(boolean existing) { argument
180 hdr.fresh = existing;
H A DSSrvReg.java123 // Return a SrvAck. We ignore the existing flag, since in V2, fresh comes
126 SrvLocMsg makeReply(boolean existing) { argument
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_list.c98 dt_list_delete(dt_list_t *dlp, void *existing) argument
100 dt_list_t *p = existing;
H A Ddt_aggregate.c73 dt_aggregate_count(int64_t *existing, int64_t *new, size_t size) argument
78 existing[i] = existing[i] + new[i];
98 dt_aggregate_min(int64_t *existing, int64_t *new, size_t size) argument
100 if (*new < *existing)
101 *existing = *new;
106 dt_aggregate_max(int64_t *existing, int64_t *new, size_t size) argument
108 if (*new > *existing)
109 *existing = *new;
144 dt_aggregate_lquantize(int64_t *existing, int64_ argument
[all...]
/osnet-11/usr/src/lib/libproc/common/
H A Dpr_rename.c87 pr_link(struct ps_prochandle *Pr, const char *existing, const char *new) argument
95 return (link(existing, new));
104 adp++; /* existing argument */
106 adp->arg_object = (void *)existing;
109 adp->arg_size = strlen(existing) + 1;
H A DPutil.c39 * Place the new element on the list prior to the existing element.
42 list_link(void *new, void *existing) argument
45 plist_t *q = existing;
/osnet-11/usr/src/lib/libshadowfs/common/
H A Dshadow_list.c112 shadow_list_delete(shadow_list_t *lp, void *existing) argument
114 shadow_list_t *p = existing;
/osnet-11/usr/src/lib/libipmi/common/
H A Dipmi_list.c115 ipmi_list_delete(ipmi_list_t *lp, void *existing) argument
117 ipmi_list_t *p = existing;
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_list.c126 topo_list_delete(topo_list_t *lp, void *existing) argument
128 topo_list_t *p = existing;
/osnet-11/usr/src/lib/libpkg/common/
H A Dkeystore.c552 X509 *existing = NULL; local
573 /* no existing truststore, so make a new one */
580 /* existing truststore, make sure there's no duplicate */
582 NULL, &existing) < 0) {
591 if (existing != NULL) {
603 if (existing != NULL)
604 X509_free(existing);
798 /* no existing truststore, so make a new one */
805 /* existing certstore, make sure there's no duplicate */
826 /* no existing keystor
[all...]
/osnet-11/usr/src/lib/libfuse/common/
H A Dfuse_uvfs.c173 * We should never have a case where there was an existing ffi.
675 dir_handle_t *existing; local
695 existing = libuvfs_stash_fid_store(fs, fid, FUSE_FID_DIR_HANDLE,
697 assert(existing == NULL);

Completed in 74 milliseconds