Searched defs:sys (Results 76 - 79 of 79) sorted by relevance

1234

/system/media/camera/docs/
H A Dmetadata_model.py38 import sys namespace
179 print >> sys.stderr, ("ERROR: Node '%s' doesn't match the parent" + \
425 print >> sys.stderr, ("WARNING: Clone entry '%s' target kind '%s'" + \
479 print >> sys.stderr, ("ERROR: Failed to validate tree in " + \
489 print >> sys.stderr, ("ERROR: Failed to validate tree in " + \
525 print >> sys.stderr, ("ERROR: Failed to validate tree in " + \
529 print >> sys.stderr, ("ERROR: Failed to validate tree in " + \
561 print >> sys.stderr, ("ERROR: Failed to validate tree in " + \
585 print >> sys.stderr, ("ERROR: Parent changed from '%s' to '%s' for " + \
1203 print >> sys
[all...]
/system/netd/server/
H A DBandwidthController.cpp37 #include <sys/socket.h>
38 #include <sys/stat.h>
39 #include <sys/types.h>
40 #include <sys/wait.h>
540 const auto& sys = android::netdutils::sSyscalls.get(); local
545 StatusOr<UniqueFile> file = sys.fopen(fname, "re");
550 auto rv = sys.fscanf(file.value().get(), "%" SCNd64, bytes);
592 const auto& sys = android::netdutils::sSyscalls.get(); local
600 StatusOr<UniqueFile> file = sys.fopen(fname, "we");
605 sys
[all...]
H A DTrafficController.cpp29 #include <sys/socket.h>
30 #include <sys/stat.h>
31 #include <sys/types.h>
32 #include <sys/utsname.h>
33 #include <sys/wait.h>
76 const auto& sys = sSyscalls.get(); local
77 ASSIGN_OR_RETURN(auto event, sys.eventfd(0, EFD_CLOEXEC));
81 ASSIGN_OR_RETURN(auto sock, sys.socket(domain, type, protocol));
87 RETURN_IF_NOT_OK(sys.bind(sock, addr));
90 RETURN_IF_NOT_OK(sys
[all...]
/system/iot/attestation/at-factory-tool/
H A Datft.py27 import sys namespace
40 if sys.platform.startswith('linux'):
43 elif sys.platform.startswith('win'):
336 sys.exit(0)
421 if getattr(sys, 'frozen', False):
423 path = sys._MEIPASS # pylint: disable=protected-access

Completed in 102 milliseconds

1234