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

  /xsrc/external/mit/libXmu/dist/src/
RdBitF.c 297 char* drive; local
306 drive = getenv ("_XBASEDRIVE");
307 if (!drive)
308 drive = "C:";
309 len = strlen (drive) + strlen (path);
312 strcpy (bufp, drive);
320 drive = getenv ("HOMEDRIVE");
321 if (drive) {
322 len = strlen (drive) + strlen (path);
325 strcpy (bufp, drive);
    [all...]
  /xsrc/external/mit/libXt/dist/src/
Intrinsic.c 900 char *drive; local
914 drive = getenv("_XBASEDRIVE");
915 if (!drive)
916 drive = "C:";
917 len = strlen(drive) + strlen(path);
919 strcpy(bufp, drive);
927 drive = getenv("HOMEDRIVE");
928 if (drive) {
929 len = strlen(drive) + strlen(path);
931 strcpy(bufp, drive);
    [all...]
  /xsrc/external/mit/libX11/dist/src/
XlibInt.c 1810 * These functions will always prefix the path with a DOS drive in the
1811 * form "<drive-letter>:". As such, these functions are only suitable
1844 char* drive; local
1853 drive = getenv ("_XBASEDRIVE");
1854 if (!drive)
1855 drive = "C:";
1856 len = strlen (drive) + strlen (path);
1859 strcpy (bufp, drive);
1867 drive = getenv ("HOMEDRIVE");
1868 if (drive) {
    [all...]

Completed in 9 milliseconds