OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tdb_unlock
(Results
1 - 2
of
2
) sorted by null
/external/e2fsprogs/lib/ext2fs/
tdb.c
259
static int
tdb_unlock
(struct tdb_context *tdb, int list, int ltype);
433
* Can't happen, see
tdb_unlock
(). It should
497
int
tdb_unlock
(struct tdb_context *tdb, int list, int ltype)
function
521
TDB_LOG((tdb, TDB_DEBUG_ERROR, "
tdb_unlock
: list %d invalid (%d)\n", list, tdb->header.hash_size));
533
TDB_LOG((tdb, TDB_DEBUG_ERROR, "
tdb_unlock
: count is 0\n"));
577
TDB_LOG((tdb, TDB_DEBUG_ERROR, "
tdb_unlock
: An error occurred unlocking!\n"));
767
return
tdb_unlock
(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK | TDB_MARK_LOCK);
772
return
tdb_unlock
(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
782
return
tdb_unlock
(tdb, BUCKET(tdb->hash_fn(&key)), F_RDLCK);
1114
tdb_unlock
(tdb, -1, F_WRLCK)
[
all
...]
/external/e2fsprogs/lib/ext2fs/tdb/patches/
static-prototypes
12
-int
tdb_unlock
(struct tdb_context *tdb, int list, int ltype);
36
+static int
tdb_unlock
(struct tdb_context *tdb, int list, int ltype);
Completed in 45 milliseconds