MCPcopy Create free account
hub / github.com/apache/httpd / dav_propdb_first_name

Function dav_propdb_first_name

modules/dav/fs/dbm.c:729–742  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

727}
728
729static dav_error * dav_propdb_first_name(dav_db *db, dav_prop_name *pname)
730{
731 dav_error *err;
732
733 if ((err = dav_dbm_firstkey(db, &db->iter)) != NULL)
734 return err;
735
736 /* skip past the METADATA key */
737 if (db->iter.dptr != NULL && *db->iter.dptr == 'M')
738 return dav_propdb_next_name(db, pname);
739
740 dav_set_name(db, pname);
741 return NULL;
742}
743
744static dav_error * dav_propdb_get_rollback(dav_db *db,
745 const dav_prop_name *name,

Callers

nothing calls this directly

Calls 3

dav_dbm_firstkeyFunction · 0.85
dav_propdb_next_nameFunction · 0.85
dav_set_nameFunction · 0.85

Tested by

no test coverage detected