Searched refs:os (Results 101 - 125 of 146) sorted by relevance

123456

/haiku/headers/build/os/package/solver/
H A DSolverResult.h1 #include <../os/package/solver/SolverResult.h>
/haiku/headers/build/os/package/hpkg/v1/
H A DHPKGDefs.h1 #include <../os/package/hpkg/v1/HPKGDefs.h>
H A DPackageAttributeValue.h1 #include <../os/package/hpkg/v1/PackageAttributeValue.h>
H A DPackageContentHandler.h1 #include <../os/package/hpkg/v1/PackageContentHandler.h>
H A DPackageData.h1 #include <../os/package/hpkg/v1/PackageData.h>
H A DPackageDataReader.h1 #include <../os/package/hpkg/v1/PackageDataReader.h>
H A DPackageEntry.h1 #include <../os/package/hpkg/v1/PackageEntry.h>
H A DPackageEntryAttribute.h1 #include <../os/package/hpkg/v1/PackageEntryAttribute.h>
H A DPackageReader.h1 #include <../os/package/hpkg/v1/PackageReader.h>
/haiku/headers/build/os/add-ons/registrar/
H A DMimeSnifferAddon.h1 #include <../os/add-ons/registrar/MimeSnifferAddon.h>
/haiku/headers/build/os/
H A DBeBuild.h5 #include <../os/BeBuild.h>
/haiku/headers/build/os/support/
H A DSupportDefs.h2 #include <../os/support/SupportDefs.h>
/haiku/headers/build/os/storage/
H A DStorageDefs.h1 #include <../os/storage/StorageDefs.h>
/haiku/headers/build/os/kernel/
H A DOS.h9 #include <../os/kernel/OS.h>
/haiku/src/add-ons/print/transports/ipp/
H A DIppContent.cpp27 void writeLength(ostream &os, short len) argument
30 os.write((char *)&len, sizeof(short));
56 ostream& operator << (ostream &os, const DATETIME &attr) argument
58 return os;
79 ostream &IppAttribute::output(ostream &os) const
81 os << (unsigned char)tag;
82 return os;
85 ostream &IppAttribute::print(ostream &os) const
87 os << "Tag: " << hex << (int)tag << '\n';
88 return os;
[all...]
H A DIppURLConnection.cpp73 ostream &os = getOutputStream(); local
74 os << *__ippRequest;
95 ostream &IppURLConnection::printIppRequest(ostream &os) argument
97 return __ippRequest->print(os);
100 ostream &IppURLConnection::printIppResponse(ostream &os) argument
103 return __ippResponse->print(os);
105 return os;
H A DIppContent.h174 virtual ostream &output(ostream &os) const;
180 friend ostream& operator << (ostream &os, const IppAttribute &attr) argument
182 return attr.output(os);
195 virtual ostream &output(ostream &os) const;
201 friend ostream& operator << (ostream &os, const IppNamedAttribute &attr) argument
203 return attr.output(os);
215 virtual ostream &output(ostream &os) const;
221 friend ostream& operator << (ostream &os, const IppNoValueAttribute &attr) argument
223 return attr.output(os);
234 virtual ostream &output(ostream &os) cons
240 operator <<(ostream &os, const IppBooleanAttribute &attr) argument
261 operator <<(ostream &os, const IppIntegerAttribute &attr) argument
293 operator <<(ostream &os, const IppDatetimeAttribute &attr) argument
314 operator <<(ostream &os, const IppStringAttribute &attr) argument
334 operator <<(ostream &os, const IppDoubleStringAttribute &attr) argument
357 operator <<(ostream &os, const IppResolutionAttribute &attr) argument
380 operator <<(ostream &os, const IppRangeOfIntegerAttribute &attr) argument
400 operator <<(ostream &os, const IppContent &ic) argument
[all...]
/haiku/src/libs/print/libprint/tools/
H A Dmake_pattern.cpp53 void print_pattern(ostream &os, const char *name, const unsigned char *pattern) argument
55 os << "const unsigned char " << name << "[] = {" << '\n' << '\t';
57 os << setw(3) << (int)pattern[i];
59 os << '\n';
61 os << ',';
63 os << '\n' << '\t';
67 os << "};" << '\n';
/haiku/src/tests/kits/app/bmessage/
H A DMessageBRectItemTest.h68 std::ostream& operator<<(std::ostream& os, const BRect& rect) argument
70 int precision = os.precision();
71 os.precision(1);
72 os << "rect"
78 os.precision(precision);
80 return os;
H A DMessageBPointItemTest.h68 std::ostream& operator<<(std::ostream& os, const BPoint& point) argument
70 int precision = os.precision();
71 os << "point(x:" << point.x << ", y:" << point.y;
72 os.precision(precision);
73 return os;
/haiku/src/libs/compat/freebsd_iflib/
H A Dmp_ring.c96 drain_ring_locked(struct ifmp_ring *r, union ring_state os, uint16_t prev, int budget) argument
100 uint16_t cidx = os.cidx;
101 uint16_t pidx = os.pidx_tail;
103 MPASS(os.flags == BUSY);
115 os.state = ns.state = r->state;
139 os.state = ns.state = r->state;
170 drain_ring_lockless(struct ifmp_ring *r, union ring_state os, uint16_t prev, int budget) argument
174 uint16_t cidx = os.cidx;
175 uint16_t pidx = os.pidx_tail;
177 MPASS(os
323 union ring_state os, ns; local
398 union ring_state os, ns; local
480 union ring_state os, ns; local
[all...]
/haiku/src/tools/checkstyle/
H A Dcheckstyle.py6 import re, sys, os namespace
45 for root, dirs, files in os.walk(dir):
46 if os.path.split(root)[1] in vcsCacheDirectory:
51 path = os.path.join(root, file)
52 if os.path.splitext(file)[1] in extensions:
87 if os.path.isfile(arg):
/haiku/src/tools/
H A Dhardlink_packages.py10 import sys, os, subprocess, re, hashlib namespace
50 for filename in os.listdir(args_src):
92 if not (os.path.exists(args_dst_packages + greatestVersion)):
93 os.link(args_src + greatestVersion, args_dst_packages + greatestVersion)
99 if os.path.exists(args_src + srcpkg):
100 if not os.path.exists(args_dst_packages + srcpkg):
101 os.link(args_src + srcpkg, args_dst_packages + srcpkg)
115 os.mkdir(args_dst + listhash)
121 os.symlink('../packages', repodir + 'packages')
134 if os
[all...]
/haiku/3rdparty/kallisti5/
H A Dconfigure.py8 import os namespace
37 os.makedirs(path)
39 if exc.errno == errno.EEXIST and os.path.isdir(path):
70 (host_sysname, host_nodename, host_release, host_version, host_machine) = os.uname()
74 sourceDir = os.path.realpath(os.path.dirname(os.path.realpath(__file__)) + "/../..")
75 outputDir = os.getcwd()
158 set_build_config("HOST_HAIKU_PORTER", os.path.abspath(args["bootstrap"][0]))
159 set_build_config("HAIKU_PORTS", os
[all...]
/haiku/headers/compatibility/bsd/sys/
H A Dlink_elf.h15 #include <os/kernel/elf.h>

Completed in 85 milliseconds

123456