OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:currpath
(Results
1 - 2
of
2
) sorted by null
/system/core/toolbox/
mkdir.c
37
char
currpath
[PATH_MAX], *pathpiece;
local
45
strcpy(
currpath
, "");
50
strcat(
currpath
, "/");
53
if(strlen(
currpath
) + strlen(pathpiece) + 2/*NUL and slash*/ > PATH_MAX) {
57
strcat(
currpath
, pathpiece);
58
strcat(
currpath
, "/");
59
if(stat(
currpath
, &st) != 0) {
60
ret = mkdir(
currpath
, 0777);
62
fprintf(stderr, "mkdir failed for %s, %s\n",
currpath
, strerror(errno));
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java
462
String
currPath
= mResFileCombo.getText();
463
Matcher m = mPathRegex.matcher(
currPath
);
467
currPath
= m.group(1);
470
currPath
= ""; //$NON-NLS-1$
481
if (newPath.equals(
currPath
) && newPath.equals(mLastFolderUsedInCombo)) {
510
currPath
= newPath + leafName;
511
if (leafName.length() > 0 && !filePaths.contains(
currPath
)) {
512
filePaths.add(
currPath
);
527
index = mResFileCombo.indexOf(
currPath
);
534
mResFileCombo.setText(
currPath
);
[
all
...]
Completed in 587 milliseconds