OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outFd
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/jni/
android_server_Watchdog.cpp
30
static void dumpOneStack(int tid, int
outFd
) {
38
write(
outFd
, buf, strlen(buf));
43
write(
outFd
, buf, nBytes);
47
write(
outFd
, "\n", 1);
66
int
outFd
= open(path, O_WRONLY | O_APPEND | O_CREAT);
67
if (
outFd
< 0) {
73
write(
outFd
, buf, strlen(buf));
84
dumpOneStack(tid,
outFd
);
91
write(
outFd
, buf, strlen(buf));
93
close(
outFd
);
[
all
...]
/frameworks/base/core/java/com/android/internal/backup/
IBackupTransport.aidl
150
int getRestoreData(in ParcelFileDescriptor
outFd
);
LocalTransport.java
205
public int getRestoreData(ParcelFileDescriptor
outFd
) {
220
BackupDataOutput out = new BackupDataOutput(
outFd
.getFileDescriptor());
Completed in 5775 milliseconds