Searched defs:spec (Results 1 - 1 of 1) sorted by relevance

/system/core/adb/
H A Dfile_sync_service.cpp306 static bool do_send(int s, const std::string& spec, std::vector<char>& buffer) { argument
307 // 'spec' is of the form "/some/path,0755". Break it up.
308 size_t comma = spec.find_last_of(',');
314 std::string path = spec.substr(0, comma);
317 mode_t mode = strtoul(spec.substr(comma + 1).c_str(), nullptr, 0);

Completed in 46 milliseconds