Searched refs:get (Results 1 - 25 of 51) sorted by relevance

123

/haiku/src/tests/misc/
H A Dboot_time_logger.sh26 hey -s $SIGNATURE get
29 echo "Failed to get a reply for $SIGNATURE"
/haiku/3rdparty/mmu_man/irc/Haiku/
H A Dgen_err_list.py18 define = match.groupdict().get("define")
19 expr = match.groupdict().get("expr")
96 define = match.groupdict().get("define")
100 define = match.groupdict().get("define")
105 str = match.groupdict().get("str")
/haiku/src/system/libroot/add-ons/icu/
H A DICUTimeConversion.cpp218 tmOut->tm_sec = calendar.get(UCAL_SECOND, icuStatus);
221 tmOut->tm_min = calendar.get(UCAL_MINUTE, icuStatus);
224 tmOut->tm_hour = calendar.get(UCAL_HOUR_OF_DAY, icuStatus);
227 tmOut->tm_mday = calendar.get(UCAL_DAY_OF_MONTH, icuStatus);
230 tmOut->tm_mon = calendar.get(UCAL_MONTH, icuStatus);
233 tmOut->tm_year = calendar.get(UCAL_YEAR, icuStatus) - 1900;
236 tmOut->tm_wday = calendar.get(UCAL_DAY_OF_WEEK, icuStatus) - 1;
239 tmOut->tm_yday = calendar.get(UCAL_DAY_OF_YEAR, icuStatus) - 1;
245 tmOut->tm_gmtoff = (calendar.get(UCAL_ZONE_OFFSET, icuStatus)
246 + calendar.get(UCAL_DST_OFFSE
[all...]
/haiku/headers/cpp/
H A Dmemory49 if (__a.get() != this->get()) {
63 _Tp* get() const __STL_NOTHROW {
H A DSFile.h49 SFile& get(void* x);
H A Diostream.h132 istream& get(char* ptr, int len, char delim = '\n');
133 istream& get(unsigned char* ptr, int len, char delim = '\n') function in class:istream
134 { return get((char*)ptr, len, delim); }
135 istream& get(char& c);
136 istream& get(unsigned char& c) { return get((char&)c); } function in class:istream
140 istream& get(signed char& c) { return get((char&)c); } function in class:istream
141 istream& get(signed char* ptr, int len, char delim = '\n') function in class:istream
142 { return get((cha
189 int get() { if (!ipfx1()) return EOF; function in class:istream
[all...]
H A Dindstream.h39 // All get-related requests are sent to get_stream().
63 indirectbuf(streambuf *get=NULL, streambuf *put=NULL, int delete_mode=0);
/haiku/headers/libs/agg/
H A Dagg_bspline.h33 // Then call get(x) that calculates a value Y for the respective X.
34 // The class supports extrapolation, i.e. you can call get(x) where x is
53 double get(double x) const;
/haiku/src/add-ons/kernel/drivers/audio/ac97/auich/
H A Dmulti.h36 void (*get) (void *card, const void *cookie, int32 type, float *values); member in struct:_multi_mixer_control
/haiku/src/add-ons/kernel/drivers/audio/ac97/auvia/
H A Dmulti.h39 void (*get) (void *card, const void *cookie, int32 type, float *values); member in struct:_multi_mixer_control
/haiku/src/add-ons/kernel/drivers/audio/ac97/es1370/
H A Dmulti.h16 void (*get) (void *card, const void *cookie, int32 type, float *values); member in struct:_multi_mixer_control
/haiku/src/add-ons/kernel/drivers/audio/echo/
H A Dmulti.h39 void (*get) (void *card, MIXER_AUDIO_CHANNEL, int32 type, float *values); member in struct:_multi_mixer_control
/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Dmulti.h36 void (*get) (void *card, const void *cookie, int32 type, float *values); member in struct:_multi_mixer_control
/haiku/src/system/boot/platform/bios_ia32/
H A Dsmp_trampoline.S46 popl %eax # get the page dir
49 popl %eax # get the final stack location
/haiku/src/system/boot/platform/pxe_ia32/
H A Dsmp_trampoline.S46 popl %eax # get the page dir
49 popl %eax # get the final stack location
/haiku/src/tests/kits/net/service/
H A Dtestserver.py136 for e in self.headers.get('Accept-Encoding', '').split(',')
171 self.headers.get('Content-Type', 'text/plain'))
180 content_length = int(self.headers.get('Content-Length', 0))
231 authorization = self.headers.get('Authorization', None)
265 authorization = self.headers.get('Authorization', None)
284 or expected_response_hash != credentials.get('response'):
393 algorithm = credentials.get('algorithm')
403 realm = credentials.get('realm')
404 username = credentials.get('username')
411 qop = credentials.get('qo
[all...]
H A Dproxy.py53 conn = self._connections.get(target.netloc, None)
68 x_forwarded_for_header = self.headers.get('X-Forwarded-For', None)
76 request_body_length = int(self.headers.get('Content-Length', '0'))
96 int(response.headers.get('Content-Length', '0'))
102 connection_header_value = self.headers.get('Connection', None)
/haiku/src/tests/kits/net/netservices2/
H A Dtestserver.py136 for e in self.headers.get('Accept-Encoding', '').split(',')
171 self.headers.get('Content-Type', 'text/plain'))
180 content_length = int(self.headers.get('Content-Length', 0))
231 authorization = self.headers.get('Authorization', None)
265 authorization = self.headers.get('Authorization', None)
284 or expected_response_hash != credentials.get('response'):
393 algorithm = credentials.get('algorithm')
403 realm = credentials.get('realm')
404 username = credentials.get('username')
411 qop = credentials.get('qo
[all...]
H A Dproxy.py53 conn = self._connections.get(target.netloc, None)
68 x_forwarded_for_header = self.headers.get('X-Forwarded-For', None)
76 request_body_length = int(self.headers.get('Content-Length', '0'))
96 int(response.headers.get('Content-Length', '0'))
102 connection_header_value = self.headers.get('Connection', None)
/haiku/src/libs/stdc++/legacy/
H A Dindstream.cc33 indirectbuf::indirectbuf(streambuf *get, streambuf *put, int delete_mode) argument
36 _get_stream = get;
37 _put_stream = put == NULL ? get : put;
H A DSFile.cc65 SFile& SFile::get(void* x) function in class:SFile
H A Disgetsb.cc29 istream& istream::get(streambuf& sb, char delim /* = '\n' */) function in class:istream
/haiku/3rdparty/mmu_man/scripts/
H A Ddumpwin.sh33 local INAME="$(hey "$APP" get InternalName of View $C of $1 Window $WIN | grep result | sed 's/.* : //')"
35 # hey "$APP" get View $C of $1 Window $WIN | awk " { print \" $2\" \$0 } "
40 # hey "$APP" get Label of View $C of $1 Window $WIN | grep result | awk " { print \" $2\" \$0 } "
45 # hey "$APP" get Text of View $C of $1 Window $WIN | grep result | awk " { print \" $2\" \$0 } "
50 hey "$APP" get Value of View $C of $1 Window $WIN | grep result | awk " { print \" $2\" \$0 } "
/haiku/src/add-ons/print/transports/lpr/
H A DLpsClient.cpp162 while (is.get(c)) {
190 if (!fInput->get(c)) {
/haiku/src/kits/network/libnetservices2/
H A DHttpRequest.cpp76 __PRETTY_FUNCTION__, std::move(std::get<BString>(fMethod)));
110 return std::get<Verb>(fMethod) == other;
114 return std::get<BString>(fMethod).Compare(otherMethodSv.data(), otherMethodSv.size()) == 0;
130 switch (std::get<Verb>(fMethod)) {
152 const auto& methodString = std::get<BString>(fMethod);
370 auto inputPositionIO = dynamic_cast<BPositionIO*>(fData->requestBody->input.get());
453 auto inputData = dynamic_cast<BPositionIO*>(fData->requestBody->input.get());

Completed in 135 milliseconds

123