Searched defs:os (Results 1 - 25 of 3570) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/iostream2/
H A Dzstream.h236 ostream& os() { function in class:ozstream
304 return zs.os() << x;
/external/zlib/src/
H A Dzlib.h116 int os; /* operating system */ member in struct:gz_header_s
751 deflate(). The text, time, os, extra field, name, and comment information
762 the time set to zero, and os set to 255, with no extra, name, or comment
976 The text, time, xflags, and os fields are filled in with the gzip header
/external/zlib/
H A Dzlib.h116 int os; /* operating system */ member in struct:gz_header_s
751 deflate(). The text, time, os, extra field, name, and comment information
762 the time set to zero, and os set to 255, with no extra, name, or comment
976 The text, time, xflags, and os fields are filled in with the gzip header
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dhttp_curl.c789 ASN1_OCTET_STRING *os; local
811 os = X509_EXTENSION_get_data(ext);
812 if (os == NULL) {
818 ASN1_STRING_data(os), ASN1_STRING_length(os));
820 data = ASN1_STRING_data(os);
821 logo = d2i_LogotypeExtn(NULL, &data, ASN1_STRING_length(os));
/external/wpa_supplicant_8/src/utils/
H A Dhttp_curl.c789 ASN1_OCTET_STRING *os; local
811 os = X509_EXTENSION_get_data(ext);
812 if (os == NULL) {
818 ASN1_STRING_data(os), ASN1_STRING_length(os));
820 data = ASN1_STRING_data(os);
821 logo = d2i_LogotypeExtn(NULL, &data, ASN1_STRING_length(os));
/external/wpa_supplicant_8/wpa_supplicant/
H A Deapol_test.py11 import os namespace
17 dir = os.path.dirname(os.path.realpath(sys.modules[__name__].__file__))
18 sys.path.append(os.path.join(dir, '..', 'wpaspy'))
25 self.ctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
28 self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
59 start = os.times()[4]
67 now = os.times()[4]
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
H A Dp2p_connect.py8 import sys, os namespace
39 os._exit(0)
45 os._exit(0)
50 os._exit(0)
299 os._exit(0)
H A Dp2p_disconnect.py7 import sys, os namespace
28 os._exit(0)
89 os._exit(0)
H A Dp2p_find.py8 import sys, os namespace
93 os._exit(0)
H A Dp2p_flush.py8 import sys, os namespace
89 os._exit(0)
H A Dp2p_group_add.py6 import sys, os namespace
33 os._exit(0)
38 os._exit(0)
107 os._exit(0)
132 os._exit(0)
146 os._exit(0)
193 os._exit(0)
222 os._exit(0)
H A Dp2p_invite.py6 import sys, os namespace
37 os._exit(0)
104 os._exit(0)
132 os._exit(0)
195 os._exit(1)
201 os._exit(0)
H A Dp2p_listen.py8 import sys, os namespace
90 os._exit(0)
H A Dp2p_stop_find.py6 import sys, os namespace
30 os._exit(0)
91 os._exit(0)
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dp2p-nfc.py9 import os namespace
53 if os.path.isdir(wpas_ctrl):
55 ifaces = [os.path.join(wpas_ctrl, i) for i in os.listdir(wpas_ctrl)]
H A Dwpas-dbus-new-getall.py4 import sys, os namespace
18 os._exit(1)
H A Dwpas-dbus-new-signals.py4 import sys, os namespace
134 os._exit(1)
H A Dwpas-dbus-new-wps.py4 import sys, os namespace
44 os._exit(1)
H A Dwpas-dbus-new.py4 import sys, os namespace
104 os._exit(1)
H A Dwpas-test.py4 import sys, os namespace
28 os._exit(1)
H A Dwps-nfc.py9 import os namespace
46 if os.path.isdir(wpas_ctrl):
48 ifaces = [os.path.join(wpas_ctrl, i) for i in os.listdir(wpas_ctrl)]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dhttp_curl.c789 ASN1_OCTET_STRING *os; local
811 os = X509_EXTENSION_get_data(ext);
812 if (os == NULL) {
818 ASN1_STRING_data(os), ASN1_STRING_length(os));
820 data = ASN1_STRING_data(os);
821 logo = d2i_LogotypeExtn(NULL, &data, ASN1_STRING_length(os));
/external/xmlrpcpp/src/
H A DXmlRpcValue.cpp563 std::ostream& XmlRpcValue::write(std::ostream& os) const {
566 case TypeBoolean: os << _value.asBool; break;
567 case TypeInt: os << _value.asInt; break;
568 case TypeDouble: os << _value.asDouble; break;
569 case TypeString: os << *_value.asString; break;
577 os << buf;
583 std::ostreambuf_iterator<char> out(os);
591 os << '{';
594 if (i > 0) os << ',';
595 _value.asArray->at(i).write(os);
623 operator <<(std::ostream& os, XmlRpc::XmlRpcValue& v) argument
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dwps-ap-nfc.py9 import os namespace
42 if os.path.isdir(wpas_ctrl):
44 ifaces = [os.path.join(wpas_ctrl, i) for i in os.listdir(wpas_ctrl)]
/external/webrtc/webrtc/tools/barcode_tools/
H A Dbarcode_decoder.py11 import os namespace
16 sys.path.append(os.path.dirname(__file__))
44 output_files_pattern = os.path.join(output_directory, 'frame_%04d.png')
127 file_prefix = os.path.join(input_directory, 'frame_')
138 if os.path.isfile(barcode_file_name):
140 os.remove(barcode_file_name)
150 os.remove(png_frame)
215 file_prefix = os.path.join(input_directory, 'frame_')
221 if os.path.isfile(file_name):

Completed in 249 milliseconds

1234567891011>>