Searched defs:existing (Results 1 - 11 of 11) sorted by relevance
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | SLPV1SSrvReg.java | 145 // Perform lookup for existing. 176 SrvLocMsg makeReply(boolean existing) { argument 180 hdr.fresh = existing;
|
H A D | SSrvReg.java | 123 // 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 D | dt_list.c | 98 dt_list_delete(dt_list_t *dlp, void *existing) argument 100 dt_list_t *p = existing;
|
H A D | dt_aggregate.c | 73 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 D | pr_rename.c | 87 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 D | Putil.c | 39 * 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 D | shadow_list.c | 112 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 D | ipmi_list.c | 115 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 D | topo_list.c | 126 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 D | keystore.c | 552 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 D | fuse_uvfs.c | 173 * 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