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
223 if (gn->youngestChild == NULL || cgn->mtime > gn->youngestChild->mtime)
224 gn->youngestChild = cgn;
232 if (gn->youngestChild != NULL) {
233 if (gn->mtime < gn->youngestChild->mtime) {
235 GNode_Path(gn->youngestChild));
263 * The mtime field of the node and the youngestChild field of its parents
319 (gn->youngestChild == NULL && (gn->type & OP_DOUBLEDEP))
    [all...]
targ.c 194 gn->youngestChild = NULL;
229 /* Don't free gn->youngestChild since it is not owned by this node. */
make.h 453 struct GNode *youngestChild;

Completed in 20 milliseconds