Lines Matching defs:Fullpath
298 * The caller must free the fullpath returned.
308 char *Fullpath;
379 Fullpath = ACPI_ALLOCATE_ZEROED (Length);
380 if (!Fullpath)
386 * Concatenate parent fullpath and path. For example,
387 * parent fullpath "\_SB_", Path "^INIT", Fullpath "\_SB_.INIT"
391 strcpy (Fullpath, &ParentPath[Index]);
395 * (don't need dot if parent fullpath is a single backslash)
399 strcat (Fullpath, ".");
404 strcat (Fullpath, Path);
408 return (Fullpath);