Lines Matching refs:found
1444 int found, n, err, safely = 0, gc_seq1; in ubifs_tnc_locate() local
1450 found = ubifs_lookup_level0(c, key, &znode, &n); in ubifs_tnc_locate()
1451 if (!found) { in ubifs_tnc_locate()
1454 } else if (found < 0) { in ubifs_tnc_locate()
1455 err = found; in ubifs_tnc_locate()
1812 int found, n, err; in do_lookup_nm() local
1817 found = ubifs_lookup_level0(c, key, &znode, &n); in do_lookup_nm()
1818 if (!found) { in do_lookup_nm()
1821 } else if (found < 0) { in do_lookup_nm()
1822 err = found; in do_lookup_nm()
2277 int found, n, err = 0; in ubifs_tnc_add() local
2282 found = lookup_level0_dirty(c, key, &znode, &n); in ubifs_tnc_add()
2283 if (!found) { in ubifs_tnc_add()
2293 } else if (found == 1) { in ubifs_tnc_add()
2303 err = found; in ubifs_tnc_add()
2328 int found, n, err = 0; in ubifs_tnc_replace() local
2334 found = lookup_level0_dirty(c, key, &znode, &n); in ubifs_tnc_replace()
2335 if (found < 0) { in ubifs_tnc_replace()
2336 err = found; in ubifs_tnc_replace()
2340 if (found == 1) { in ubifs_tnc_replace()
2343 found = 0; in ubifs_tnc_replace()
2352 found = 1; in ubifs_tnc_replace()
2354 found = resolve_collision_directly(c, key, &znode, &n, in ubifs_tnc_replace()
2357 found, znode, n, old_lnum, old_offs); in ubifs_tnc_replace()
2358 if (found < 0) { in ubifs_tnc_replace()
2359 err = found; in ubifs_tnc_replace()
2363 if (found) { in ubifs_tnc_replace()
2385 if (!found) in ubifs_tnc_replace()
2413 int found, n, err = 0; in ubifs_tnc_add_nm() local
2418 found = lookup_level0_dirty(c, key, &znode, &n); in ubifs_tnc_add_nm()
2419 if (found < 0) { in ubifs_tnc_add_nm()
2420 err = found; in ubifs_tnc_add_nm()
2424 if (found == 1) { in ubifs_tnc_add_nm()
2426 found = fallible_resolve_collision(c, key, &znode, &n, in ubifs_tnc_add_nm()
2429 found = resolve_collision(c, key, &znode, &n, nm); in ubifs_tnc_add_nm()
2430 dbg_tnc("rc returned %d, znode %p, n %d", found, znode, n); in ubifs_tnc_add_nm()
2431 if (found < 0) { in ubifs_tnc_add_nm()
2432 err = found; in ubifs_tnc_add_nm()
2445 if (found == 1) { in ubifs_tnc_add_nm()
2458 if (!found) { in ubifs_tnc_add_nm()
2618 int found, n, err = 0; in ubifs_tnc_remove() local
2623 found = lookup_level0_dirty(c, key, &znode, &n); in ubifs_tnc_remove()
2624 if (found < 0) { in ubifs_tnc_remove()
2625 err = found; in ubifs_tnc_remove()
2628 if (found == 1) in ubifs_tnc_remove()
3336 int n, found, err, nn; in is_leaf_node_in_tnc() local
3339 found = ubifs_lookup_level0(c, key, &znode, &n); in is_leaf_node_in_tnc()
3340 if (found < 0) in is_leaf_node_in_tnc()
3341 return found; /* Error code */ in is_leaf_node_in_tnc()
3342 if (!found) in is_leaf_node_in_tnc()