Lines Matching refs:after
92 * if *after == NULL, then this is the ``initial case'',
95 * if *after != NULL, we have the normal case, and
97 * if *after is not a version name found among the buckets,
101 * If either version or after is NULL, it's a programmer error.
104 add_parent(const char *version, const char *after, int weak)
110 assert(after != NULL, "passed a null after to add_parent");
111 errlog(BEGIN, "add_parent(%s,%s,%d) {", version, after, weak);
117 if (*after == '\0') {
125 if ((child = find_in_hashmap(after)) == NULL) {
132 after, version);
147 add_uncle(const char *version, const char *after, int weak)
154 assert(after != NULL, "passed a null after to add_uncle");
155 errlog(BEGIN, "add_uncle(%s,%s,%d) {", version, after, weak);
160 if (*after == '\0') {
168 if ((child = find_in_hashmap(after)) == NULL) {
175 after, version);