Home
last modified time | relevance | path

Searched refs:path (Results 1 – 6 of 6) sorted by relevance

/pdk/build/
Dpdk_utils.py28 if not os.path.isdir(dest_full_path):
38 if not os.path.isdir(dest_full_path):
43 if os.path.isfile(child_full_name):
56 if not os.path.isdir(dest_full_path):
66 if not os.path.isfile(src_full_name):
70 dest_dir = os.path.dirname(dest_file)
71 if not os.path.isdir(dest_dir):
81 if not os.path.isfile(src_full_name):
85 if not os.path.isdir(dest_dir):
101 if os.path.islink(item_full_path) or os.path.isfile(item_full_path):
[all …]
Dprepare_pdk_tree.py71 [path, groupsAttrib] = handler.getAttribs(line)
73 subdirs.append(path)
116 sourceDir = os.path.abspath('.')
117 targetDir = os.path.abspath(targetDir)
128 if os.path.exists(targetDir + '/' + UMOUNT_FILE):
/pdk/util/
Ddiff_products.py37 def removeTrailingParen(path): argument
38 if path.endswith(")"):
39 return path[:-1]
41 return path
43 def substPathVars(path, parentPath): argument
44 path_ = path.replace("$(SRC_TARGET_DIR)", "build/target")
45 path__ = path_.replace("$(LOCAL_PATH)", os.path.dirname(parentPath))
77 if not os.path.exists(productPath):
109 for (k, path) in confList[key]:
110 print " " + k + ": " + path
/pdk/apps/HelloPDK/src/com/example/android/helloPDK/
DMainActivity.java46 String path = intent.getStringExtra("com.example.android.helloPDK.Path"); in onCreate() local
48 if (path == null) { in onCreate()
49 path = ""; in onCreate()
52 setListAdapter(new SimpleAdapter(this, getData(path), in onCreate()
130 protected Intent browseIntent(String path) { in browseIntent() argument
133 result.putExtra("com.example.android.helloPDK.Path", path); in browseIntent()
/pdk/apps/TestingCamera/src/com/android/testingcamera/
DSnapshotDialogFragment.java275 public synchronized void onScanCompleted(String path, Uri uri) { in onScanCompleted() argument
DTestingCamera.java1618 public void onScanCompleted(final String path, final Uri uri) { in notifyMediaScannerOfFile()
1623 path + " -> " + uri); in notifyMediaScannerOfFile()
1625 listener.onScanCompleted(path, uri); in notifyMediaScannerOfFile()