| /src/sbin/fsck_ext2fs/ | 
| pass3.c | 76 	ino_t orphan;  local in function:pass3 87 			orphan = inp->i_number;
 94 		(void)linkup(orphan, inp->i_dotdot);
 97 		statemap[orphan] = DFOUND;
 
 | 
| dir.c | 396 linkup(ino_t orphan, ino_t parentdir) 405 	dp = ginode(orphan);
 408 	pinode(orphan);
 473 	(void)lftempname(tempname, orphan);
 474 	if (makeentry(lfdir, orphan, tempname) == 0) {
 479 	lncntp[orphan]--;
 481 		if ((changeino(orphan, "..", lfdir) & ALTERED) == 0 &&
 483 			(void)makeentry(orphan, lfdir, "..");
 488 		pwarn("DIR I=%llu CONNECTED. ", (unsigned long long)orphan);
 
 | 
| /src/sbin/fsck_lfs/ | 
| pass3.c | 43 	ino_t orphan;  local in function:pass3 56 			orphan = inp->i_number;
 63 		(void) linkup(orphan, inp->i_dotdot);
 66 		statemap[orphan] = DFOUND;
 
 | 
| dir.c | 422 linkup(ino_t orphan, ino_t parentdir) 432 	vp = vget(fs, orphan);
 436 	pinode(orphan);
 502 	(void) lftempname(tempname, orphan);
 503 	if (makeentry(lfdir, orphan, tempname) == 0) {
 508 	lncntp[orphan]--;
 510 		if ((changeino(orphan, "..", lfdir) & ALTERED) == 0 &&
 512 			(void) makeentry(orphan, lfdir, "..");
 518 		pwarn("DIR I=%llu CONNECTED. ", (unsigned long long)orphan);
 
 | 
| /src/tests/usr.bin/ld/ | 
| t_section.sh | 48 atf_test_case orphan 50 	atf_set "descr" "check orphan section placement"
 57 /* read-only orphan */
 59 /* read-write orphan */
 72 		# Read-only orphan sections are placed after well-known
 76 		# Read-write orphan sections are placed after well-known
 99 	atf_add_test_case orphan
 
 | 
| /src/sbin/fsck_ffs/ | 
| pass3.c | 59 	ino_t orphan;  local in function:pass3 97 			orphan = inp->i_number;
 105 			if (linkup(orphan, inp->i_dotdot, NULL))
 110 		    (u_long)orphan);
 117 		idesc.id_parent = orphan;
 124 		if (linkup(orphan, inp->i_parent, namebuf)) {
 127 				inoinfo(orphan)->ino_linkcnt++;
 
 | 
| dir.c | 559 linkup(ino_t orphan, ino_t parentdir, char *name) 570 	dp = ginode(orphan);
 575 	pinode(orphan);
 659 	(void)lftempname(tempname, orphan);
 660 	if (makeentry(lfdir, orphan, (name ? name : tempname)) == 0) {
 666 	inoinfo(orphan)->ino_linkcnt--;
 668 		if ((changeino(orphan, "..", lfdir) & ALTERED) == 0 &&
 670 			(void)makeentry(orphan, lfdir, "..");
 676 		reparent(orphan, lfdir);
 677 		pwarn("DIR I=%llu CONNECTED. ", (unsigned long long)orphan);
 [all...]
 | 
| /src/tests/fs/lfs/ | 
| t_orphan.c | 38 void orphan(int); 44 		"LFS32 orphan removal");
 52 		"LFS64 orphan removal");
 58 	orphan(32);
 63 	orphan(64);
 66 void orphan(int width)  function in typeref:typename:void
 
 | 
| /src/sys/ufs/lfs/ | 
| lfs_alloc.c | 802 	ino_t *orphan = NULL;  local in function:lfs_order_freelist 850 			if (orphan == NULL) {
 852 				orphan = kmem_zalloc(sizeof(orphan[0]) *
 860 				orphan_new = kmem_zalloc(sizeof(orphan[0]) *
 862 				memcpy(orphan_new, orphan, sizeof(orphan[0]) *
 864 				kmem_free(orphan, sizeof(orphan[0]) * norphan);
 865 				orphan = orphan_new
 [all...]
 | 
| lfs_vfsops.c | 899 	ino_t *orphan;  local in function:lfs_mountfs 1199 	lfs_order_freelist(fs, &orphan, &norphan);
 1239 	lfs_free_orphans(fs, orphan, norphan);
 
 | 
| /src/sys/external/bsd/ipf/netinet/ | 
| ip_state.c | 3532 	int orphan = 1;  local in function:ipf_state_del 3549 		orphan = 0;
 3572 	 * but note that at this point it is now an orphan.  How can this
 3590 		if (!orphan)
 3639 	if (orphan)
 4614 /* have an orphan, otherwise not.  However there is a possible race between */
 
 |