HomeSort by: relevance | last modified time | path
    Searched refs:youngestChild (Results 1 - 4 of 4) sorted by relevancy

  /src/usr.bin/make/
arch.c 893 return gn->youngestChild == NULL ||
894 gn->youngestChild->mtime > tocModTime;
915 * (gn->mtime < gn->youngestChild->mtime).
936 if ((!Lst_IsEmpty(&gn->children) && gn->youngestChild == NULL) ||
938 (gn->youngestChild != NULL &&
939 gn->mtime < gn->youngestChild->mtime))
make.c 80 * of the youngestChild field of the parent, filling
85 * Update the node's youngestChild field based on the
222 if (gn->youngestChild == NULL || cgn->mtime > gn->youngestChild->mtime)
223 gn->youngestChild = cgn;
231 if (gn->youngestChild != NULL) {
232 if (gn->mtime < gn->youngestChild->mtime) {
234 GNode_Path(gn->youngestChild));
262 * The mtime field of the node and the youngestChild field of its parents
318 (gn->youngestChild == NULL &
    [all...]
targ.c 194 gn->youngestChild = NULL;
229 /* Don't free gn->youngestChild since it is not owned by this node. */
make.h 451 struct GNode *youngestChild;

Completed in 14 milliseconds