OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:copy_path
(Results
1 - 2
of
2
) sorted by null
/bootable/recovery/
recovery.cpp
480
char
copy_path
[PATH_MAX];
local
481
strcpy(
copy_path
, SIDELOAD_TEMP_DIR);
482
strcat(
copy_path
, "/package.zip");
496
FILE* fout = fopen(
copy_path
, "wb");
498
LOGE("Failed to open %s (%s)\n",
copy_path
, strerror(errno));
504
LOGE("Short write of %s (%s)\n",
copy_path
, strerror(errno));
512
LOGE("Failed to close %s (%s)\n",
copy_path
, strerror(errno));
523
if (chmod(
copy_path
, 0400) != 0) {
524
LOGE("Failed to chmod %s (%s)\n",
copy_path
, strerror(errno));
528
return strdup(
copy_path
);
[
all
...]
/frameworks/base/docs/html/guide/topics/text/
copy-paste.jd
428
private static final String
COPY_PATH
= "/copy";
431
Uri copyUri = Uri.parse(CONTACTS +
COPY_PATH
+ "/" + lastName);
[
all
...]
Completed in 2528 milliseconds