Searched refs:old_suffix (Results 1 – 3 of 3) sorted by relevance
/third_party/openssl/apps/ |
D | apps.c | 1473 const char *old_suffix) in rotate_serial() argument 1478 i = strlen(serialfile) + strlen(old_suffix); in rotate_serial() 1488 j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s.%s", serialfile, old_suffix); in rotate_serial() 1491 j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s-%s", serialfile, old_suffix); in rotate_serial() 1677 const char *old_suffix) in rotate_index() argument 1682 i = strlen(dbfile) + strlen(old_suffix); in rotate_index() 1692 j = BIO_snprintf(buf[3], sizeof(buf[3]), "%s.attr.%s", dbfile, old_suffix); in rotate_index() 1694 j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s.%s", dbfile, old_suffix); in rotate_index() 1698 j = BIO_snprintf(buf[3], sizeof(buf[3]), "%s-attr-%s", dbfile, old_suffix); in rotate_index() 1700 j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s-%s", dbfile, old_suffix); in rotate_index()
|
D | apps.h | 534 const char *old_suffix); 540 const char *old_suffix);
|
/third_party/python/Lib/ |
D | pathlib.py | 781 old_suffix = self.suffix 782 if not old_suffix: 785 name = name[:-len(old_suffix)] + suffix
|