HomeSort by relevance Sort by last modified time
    Searched defs:dup (Results 1 - 25 of 58) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/common/
dup.c 32 dup(int fd) function
  /onnv/onnv-gate/usr/src/cmd/svr4pkg/libinst/
pathdup.c 51 struct dup { struct
53 struct dup *next;
56 static struct dup *head, *tail, *new;
94 new = calloc(1, sizeof (struct dup));
  /onnv/onnv-gate/usr/src/cmd/avs/dsstat/
dsstat.c 278 int dup = 0; local
292 dup = 0;
298 dup = 1;
301 dup = 1;
307 if (dup)
  /onnv/onnv-gate/usr/src/cmd/logadm/
glob.c 119 struct fn_list *dup = fn_list_dup(ret); local
122 fn_list_appendrange(dup, left, comma);
123 fn_list_addfn_list(newret, dup);
  /onnv/onnv-gate/usr/src/lib/scsi/libscsi/common/
scsi_subr.c 179 char *dup = libscsi_alloc(hp, len + 1); local
181 if (dup == NULL)
184 return (strcpy(dup, str));
  /onnv/onnv-gate/usr/src/uts/common/io/
neti_stack.c 98 net_instance_int_t *dup; local
118 * set in "dup", so it is adequately prepared for the
121 dup = net_instance_int_create(n->nini_instance, n);
124 LIST_INSERT_HEAD(&nts->nts_instances, dup, nini_next);
389 * set in "dup", so it is adequately prepared for the
  /onnv/onnv-gate/usr/src/uts/common/syscall/
fcntl.c 691 dup(int fd) function
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/fat/
table.c 61 FatTable* dup; local
63 dup = fat_table_new (ft->fat_type, ft->size);
64 if (!dup) return NULL;
66 dup->cluster_count = ft->cluster_count;
67 dup->free_cluster_count = ft->free_cluster_count;
68 dup->bad_cluster_count = ft->bad_cluster_count;
69 dup->last_alloc = ft->last_alloc;
71 memcpy (dup->table, ft->table, ft->raw_size);
73 return dup;
  /onnv/onnv-gate/usr/src/cmd/diff3/
diff3prog.c 111 static void change(int i, struct range *rold, int dup);
118 static int edit(struct diff *diff, int dup, int j);
282 int dup; local
342 dup = duplicate(&d1->old, &d2->old);
344 * dup = 0 means all files differ
345 * dup = 1 meands files 1&2 identical
348 separate(dup?"3":"");
349 change(1, &d1->old, dup);
354 j = edit(d1, dup, j);
399 change(int i, struct range *rold, int dup)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/ar/common/
cmd.c 741 char *dup = NULL; local
754 dup = malloc(f_len+1);
755 if (dup == NULL) {
760 (void) strncpy(dup, f_name, f_len);
762 f_name = dup;
786 if (dup != NULL)
787 free(dup);
805 if (dup != NULL)
806 free(dup);
826 if (dup)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libzfs_jni/common/
libzfs_jni_diskmgt.c 71 char *dup; local
79 dup = strdup(name);
80 if (dup == NULL) {
88 return (dup);
  /onnv/onnv-gate/usr/src/tools/protocmp/
protodir.c 92 elem *dup; local
211 if (!(dup = find_elem(list, e, FOLLOW_LINK))) {
216 } else if (dup->file_type == DIR_T) {
217 if (!(dup->pkgs = add_pkg(dup->pkgs, pkgname))) {
221 pkgname, dup->name);
224 if (e->perm != dup->perm) {
228 pkgname, e->perm, dup->name, dup->perm);
230 if (strcmp(e->owner, dup->owner) != 0)
265 elem *p, *dup; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/smbsrv/libsmbns/common/
smbns_netbios_cache.c 723 struct name_entry *dup; local
737 dup = (struct name_entry *)malloc(size);
738 if (dup == 0)
741 bzero(dup, size);
743 dup->forw = dup->back = dup;
744 dup->attributes = entry->attributes;
745 (void) memcpy(dup->name, entry->name, NETBIOS_NAME_SZ);
746 (void) strlcpy((char *)dup->scope, (char *)entry->scope
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/ufs/fsck/
dup_avl.c 126 * For DB_INCR, returns true if the dup was added to the tree.
127 * For DB_DECR, returns true if the dup was in the tree.
133 fragment_t *dup; local
148 dup = avl_find(&dup_frags, (void *)&key, &where);
149 if ((dup == NULL) & (flags & DB_CREATE)) {
150 dup = alloc_dup(fragno);
151 avl_insert(&dup_frags, (void *)dup, where);
154 if (dup != NULL) {
160 added = increment_claimant(dup, ino, lfn);
163 * Note that dup may be invalidated by this call
197 fragment_t *dup; local
243 reference_t *dup; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lvm/metassist/controller/
metassist.c 686 char *dup; local
699 if ((dup = strdup(device)) == NULL) {
705 if ((item = dlist_new_item((void *)dup)) == NULL) {
707 free(dup);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/modload/
plcysubr.c 632 char *dup, *tok, *s1; local
634 dup = strdup(entry);
635 if (dup == NULL) {
644 for (tok = strtok_r(dup, "\n", &s1); tok != NULL;
650 free(dup);
655 free(dup);
  /onnv/onnv-gate/usr/src/lib/libnisdb/
ldap_ruleval.c 443 int iv, v, dup; local
  /onnv/onnv-gate/usr/src/lib/libast/common/misc/
mime.c 245 register Cap_t* dup; local
248 for (pud = 0, dup = ent->cap; dup; pud = dup, dup = dup->next)
249 if (!cap->test && !dup->test || cap->test && dup->test && streq(cap->test, dup->test))
257 if (!(cap->next = dup->next)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/vm/
seg.h 119 int (*dup)(struct seg *, struct seg *); member in struct:seg_ops
213 #define SEGOP_DUP(s, n) (*(s)->s_ops->dup)((s), (n))
  /onnv/onnv-gate/usr/src/uts/sun4v/io/
vsw_switching.c 1640 int dup = 0; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/scsi/common/
cfga_utils.c 293 char c, *dp = NULL, *dup = NULL; local
302 if ((dup = calloc(1, strlen(path) + 1)) == NULL) {
308 for (sp = path, dp = dup; (c = *sp) != '\0'; sp++) {
320 if (prev_was_slash && dp != dup && dp - 1 != dup) {
326 return (dup);
  /onnv/onnv-gate/usr/src/uts/common/fs/devfs/
devfs_subr.c 933 struct dv_node *dv, *dup; local
1172 if ((dup = dv_findbyname(ddv, nm)) == NULL) {
1180 dv = dup;
    [all...]
  /onnv/onnv-gate/usr/src/lib/libshell/amd64/include/ast/
shell.h 249 # define dup sh_dup macro
  /onnv/onnv-gate/usr/src/lib/libshell/common/include/
shell.h 238 # define dup sh_dup macro
  /onnv/onnv-gate/usr/src/lib/libshell/i386/include/ast/
shell.h 249 # define dup sh_dup macro

Completed in 779 milliseconds

1 2 3