/osnet-11/usr/src/lib/libast/common/path/ |
H A D | pathrepl.c | 27 * in place replace of first occurrence of /match/ with /replace/ in path 36 pathrepl(char* path, const char* match, const char* replace) argument 38 return pathrepl_20100601(path, PATH_MAX, match, replace); 46 pathrepl_20100601(register char* path, size_t size, const char* match, register const char* replace) argument 54 if (!replace) 55 replace = ""; 56 if (streq(match, replace)) 73 r = replace;
|
/osnet-11/usr/src/lib/libpkg/common/ |
H A D | cfext.h | 47 unsigned replace:1; /* merge makes no sense for this object pair */ member in struct:mergstat
|
/osnet-11/usr/src/lib/libshell/common/bltins/ |
H A D | hist.c | 52 char *replace = 0; /* replace old=new */ local 109 flag = hist_expand(arg,&replace); 111 sfputr(sfstdout, replace, '\n'); 114 if(replace) 115 free(replace); 125 if(!replace && strchr(arg+1,'=')) 127 replace = arg; 258 if(replace) 259 hist_subst(error_info.id,fdo,replace); 286 hist_subst(const char *command,int fd,char *replace) argument [all...] |
/osnet-11/usr/src/cmd/sendmail/db/btree/ |
H A D | bt_put.c | 93 int bigkey, bigdata, dupadjust, replace, ret; local 101 dupadjust = replace = 0; 302 replace = 1; 324 } else if (replace)
|
/osnet-11/usr/src/lib/pkcs11/pkcs11_tpm/common/ |
H A D | object.c | 756 object_restore(CK_BYTE *data, OBJECT **new_obj, CK_BBOOL replace) { argument 791 if (replace == FALSE) {
|
/osnet-11/usr/src/lib/libnisdb/ |
H A D | db_mindex2.cc | 447 db_mindex::updateTableEntry(entry_object *e, int replace, char *tableName, argument 496 if (replace) { 575 if (replace && obj == 0) { 608 if (replace) { 610 * While the DB can handle a modify (replace)
|
/osnet-11/usr/src/lib/libnisdb/yptol/ |
H A D | dit_access.c | 198 bool_t replace, bool_t ignore_map_errs) 223 res = singleWriteToDIT(map, domain, &key, &value, replace); 197 write_to_dit(char *map, char *domain, datum key, datum value, bool_t replace, bool_t ignore_map_errs) argument
|
H A D | dit_access_utils.c | 1215 bool_t replace) { 1375 if (replace == FALSE) { 1408 myself, (replace == TRUE) ? 1214 singleWriteToDIT(char *map, char *domain, datum *key, datum *value, bool_t replace) argument
|
/osnet-11/usr/src/lib/libc/port/gen/ |
H A D | ndbm.c | 300 dbm_store(DBM *db, datum key, datum dat, int replace) argument 318 if (!replace)
|
/osnet-11/usr/src/grub/grub2/include/grub/ |
H A D | unicode.h | 29 grub_uint32_t replace; member in struct:grub_unicode_bidi_pair
|
/osnet-11/usr/src/cmd/ldap/common/ |
H A D | ldapmodify.c | 49 static int error = 0, replace, nbthreads = 1; variable 79 #define T_MODOPREPLACESTR "replace" 422 case 'r': /* default is to replace rather than add values */ 423 replace = 1; 639 modop = replace ? LDAP_MOD_REPLACE : LDAP_MOD_ADD; 722 /*There was a value to replace*/ 746 attribute to replace, so we alloc 865 modop = replace ? LDAP_MOD_REPLACE : LDAP_MOD_ADD; 1001 gettext("replace") : op == LDAP_MOD_ADD ?
|
/osnet-11/usr/src/lib/libshell/common/edit/ |
H A D | vi.c | 182 #define REPLACE -40 /* replace chars */ 199 static void replace(Vi_t*,int, int); 440 /* so replace ^V with it */ 639 * REPLACE, replace char if possible 1565 replace(vp,c, 1); 2065 static void replace(register Vi_t *vp, register int c, register int increment) function 2071 /*** can't replace invalid cursor ***/ 2628 case 'r': /** replace **/ 2637 replace(vp,c, trepeat!=0); 2701 replace(v [all...] |
/osnet-11/usr/src/lib/libc/port/threads/ |
H A D | thr.c | 750 ulwp_t *replace = NULL; local 797 if ((replace = udp->ulwp_replace_free) == NULL) 798 replace = lmalloc(REPLACEMENT_SIZE); 799 else if ((udp->ulwp_replace_free = replace->ul_next) == NULL) 818 if (replace != NULL) { 820 (void) memcpy(replace, self, REPLACEMENT_SIZE); 821 replace->ul_self = replace; 822 replace->ul_next = NULL; /* clone not on stack list */ 823 replace 989 int replace; local [all...] |