status            322 gozilla/gozilla.c 	int status = -1;
status            338 gozilla/gozilla.c 			status = 0;
status            351 gozilla/gozilla.c 					status = 0;
status            358 gozilla/gozilla.c 	if (status == -1)
status             87 htags-refkit/htags_path2url.c 	int status = 0;
status             91 htags-refkit/htags_path2url.c 	status = -2;
status             94 htags-refkit/htags_path2url.c 	status = -3;
status             97 htags-refkit/htags_path2url.c 	status = -1;
status            100 htags-refkit/htags_path2url.c 	status = -4;
status            112 htags-refkit/htags_path2url.c 	return status;
status            140 htags-refkit/htags_path2url.c 	int status;
status            147 htags-refkit/htags_path2url.c 	status = -1;
status            212 htags-refkit/htags_path2url.c 	int status = 0;
status            217 htags-refkit/htags_path2url.c 	status = load_filemap_contents(filemap, &area, &size);
status            218 htags-refkit/htags_path2url.c 	if (status < 0)
status            219 htags-refkit/htags_path2url.c 		return status;
status            220 htags-refkit/htags_path2url.c 	status = create_filemap_index(area, size, &map, &lines);
status            221 htags-refkit/htags_path2url.c 	if (status < 0) {
status            223 htags-refkit/htags_path2url.c 		return status;
status            136 libdb/bt_close.c 	int status;
status            158 libdb/bt_close.c 	if ((status = mpool_sync(t->bt_mp)) == RET_SUCCESS)
status            161 libdb/bt_close.c 	return (status);
status             74 libdb/bt_delete.c 	int status;
status             92 libdb/bt_delete.c 		status = __bt_bdelete(t, key);
status            114 libdb/bt_delete.c 			status = __bt_dleaf(t, NULL, h, c->pg.index);
status            116 libdb/bt_delete.c 			if (NEXTINDEX(h) == 0 && status == RET_SUCCESS) {
status            121 libdb/bt_delete.c 				    h, status == RET_SUCCESS ? MPOOL_DIRTY : 0);
status            129 libdb/bt_delete.c 	if (status == RET_SUCCESS)
status            131 libdb/bt_delete.c 	return (status);
status            551 libdb/bt_delete.c 	int curcopy, status;
status            570 libdb/bt_delete.c 			if ((status = __bt_ret(t, &e,
status            572 libdb/bt_delete.c 				return (status);
status            624 libdb/bt_delete.c 	if (curcopy || (status =
status            629 libdb/bt_delete.c 	return (status);
status             70 libdb/bt_get.c 	int exact, status;
status             93 libdb/bt_get.c 	status = __bt_ret(t, e, NULL, NULL, data, &t->bt_rdata, 0);
status            103 libdb/bt_get.c 	return (status);
status             85 libdb/bt_put.c 	int dflags, exact, status;
status            210 libdb/bt_put.c 		if ((status = __bt_split(t, h, key,
status            212 libdb/bt_put.c 			return (status);
status             85 libdb/bt_seq.c 	int status;
status            104 libdb/bt_seq.c 			status = __bt_seqadv(t, &e, flags);
status            111 libdb/bt_seq.c 		status = __bt_seqset(t, &e, key, flags);
status            118 libdb/bt_seq.c 	if (status == RET_SUCCESS) {
status            121 libdb/bt_seq.c 		status =
status            133 libdb/bt_seq.c 	return (status);
status            138 libutil/dbop.c 	int status;
status            143 libutil/dbop.c 	status = (*db->get)(db, &key, &dat, 0);
status            146 libutil/dbop.c 	switch (status) {
status            168 libutil/dbop.c 	int status;
status            180 libutil/dbop.c 	status = (*db->put)(db, &key, &dat, 0);
status            181 libutil/dbop.c 	switch (status) {
status            202 libutil/dbop.c 	int status;
status            214 libutil/dbop.c 	status = (*db->put)(db, &key, &dat, 0);
status            215 libutil/dbop.c 	switch (status) {
status            234 libutil/dbop.c 	int status;
status            239 libutil/dbop.c 		status = (*db->del)(db, &key, 0);
status            241 libutil/dbop.c 		status = (*db->del)(db, &key, R_CURSOR);
status            242 libutil/dbop.c 	if (status == RET_ERROR)
status            276 libutil/dbop.c 	int status;
status            293 libutil/dbop.c 		for (status = (*db->seq)(db, &key, &dat, R_CURSOR);
status            294 libutil/dbop.c 			status == RET_SUCCESS;
status            295 libutil/dbop.c 			status = (*db->seq)(db, &key, &dat, R_NEXT)) {
status            309 libutil/dbop.c 		for (status = (*db->seq)(db, &key, &dat, R_FIRST);
status            310 libutil/dbop.c 			status == RET_SUCCESS;
status            311 libutil/dbop.c 			status = (*db->seq)(db, &key, &dat, R_NEXT)) {
status            324 libutil/dbop.c 	switch (status) {
status            353 libutil/dbop.c 	int status;
status            359 libutil/dbop.c 	while ((status = (*db->seq)(db, &key, &dat, R_NEXT)) == RET_SUCCESS) {
status            388 libutil/dbop.c 	if (status == RET_ERROR)
status             85 libutil/find.c static int status;
status            389 libutil/find.c 	assert(status == 0);
status            390 libutil/find.c 	status = FIND_OPEN;
status            423 libutil/find.c 	assert(status == 0);
status            424 libutil/find.c 	status = FILELIST_OPEN;
status            469 libutil/find.c 	assert(status != 0);
status            470 libutil/find.c 	if (status == END_OF_FIND)
status            472 libutil/find.c 	else if (status == FILELIST_OPEN)
status            474 libutil/find.c 	else if (status == FIND_OPEN)
status            575 libutil/find.c 	status = END_OF_FIND;
status            595 libutil/find.c 			status = END_OF_FIND;
status            650 libutil/find.c 	assert(status != 0);
status            651 libutil/find.c 	if (status == FIND_OPEN) {
status            655 libutil/find.c 	} else if (status == FILELIST_OPEN) {
status            662 libutil/find.c 	} else if (status != END_OF_FIND) {
status            668 libutil/find.c 	status = 0;