HomeSort by relevance Sort by last modified time
    Searched defs:newDir (Results 1 - 2 of 2) sorted by null

  /external/svox/picolanginstaller/src/com/svox/langpack/installer/
InstallerActivity.java 79 File newDir = new File(rootDirectory + entry.getName());
80 newDir.mkdir();
  /development/simulator/app/
MyApp.cpp 323 char oldDir[512], newDir[512];
339 dwRet = GetCurrentDirectory(sizeof(newDir), newDir);
340 if (dwRet == 0 || dwRet > sizeof(newDir))
341 sprintf(newDir, "GET_DIR_FAILED %lu", dwRet);
343 if (getcwd(newDir, sizeof(newDir)) == NULL)
344 strcpy(newDir, "GET_DIR_FAILED");
346 newDirStr = wxString::FromAscii(newDir);

Completed in 104 milliseconds