Home
last modified time | relevance | path

Searched refs:destination (Results 1 – 3 of 3) sorted by relevance

/bootable/recovery/minadbd/
Dadb.h206 asocket *create_local_service_socket(const char *destination);
209 void connect_to_remote(asocket *s, const char *destination);
Dsockets.c500 void connect_to_remote(asocket *s, const char *destination) in connect_to_remote() argument
504 int len = strlen(destination) + 1; in connect_to_remote()
510 D("LS(%d): connect('%s')\n", s->id, destination); in connect_to_remote()
514 strcpy((char*) p->data, destination); in connect_to_remote()
/bootable/recovery/
Drecovery.cpp243 copy_log_file(const char* source, const char* destination, int append) { in copy_log_file() argument
244 FILE *log = fopen_path(destination, append ? "a" : "w"); in copy_log_file()
246 LOGE("Can't open %s\n", destination); in copy_log_file()
260 check_and_fclose(log, destination); in copy_log_file()