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

/system/core/libcutils/
H A Dqtaguid.c84 int param_fd; local
87 param_fd = TEMP_FAILURE_RETRY(open(param_path, O_WRONLY));
88 if (param_fd < 0) {
91 res = TEMP_FAILURE_RETRY(write(param_fd, value, strlen(value)));
95 close(param_fd);
165 int param_fd; local
/system/extras/tests/iptables/qtaguid/
H A DsocketTag.cpp78 int param_fd; local
83 param_fd = open(filename.c_str(), O_WRONLY);
84 if (param_fd < 0) {
88 res = write(param_fd, data, strlen(data));
92 close(param_fd);

Completed in 551 milliseconds