Searched refs:code (Results 176 - 200 of 474) sorted by last modified time

1234567891011>>

/haiku/src/servers/app/
H A DEventStream.cpp247 int32 code; local
248 bufferSize = read_port_etc(fPort, &code, buffer, bufferSize,
255 if (code == 'quit') {
259 if (code == 'insm') {
266 ObjectDeleter<BMessage> message(new BMessage(code));
279 printf("Unflatten event failed: %s, port message code was: %" B_PRId32
280 " - %c%c%c%c\n", strerror(status), code, (int8)(code >> 24),
281 (int8)(code >> 16), (int8)(code >>
[all...]
/haiku/src/apps/haikudepot/model/
H A DRatingStability.cpp33 RatingStability::RatingStability(const BString& code, argument
36 fCode(code),
H A DRatingStability.h17 const BString& code,
H A DUserUsageConditions.cpp14 #define KEY_CODE "code"
73 UserUsageConditions::SetCode(const BString& code) argument
75 fCode = code;
/haiku/src/kits/debugger/arch/x86_64/
H A DArchitectureX8664.cpp493 uint8 code[1]; local
494 if (fTeamMemory->ReadMemory(rip, &code, 1) == 1
495 && code[0] == 0xc3) {
589 // allocate a buffer for the function code to disassemble
596 // read the code
746 // read the code - maximum x86{-64} instruction size = 15 bytes
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.h311 static int32 TypeCodeToKeyType(type_code code);
/haiku/src/apps/bootmanager/
H A Dbootman.S89 ; ah - scan code
93 ; ah - scan code
159 ; 16 bit code
253 ; use code available in stage 1
362 ; Use code available in stage 2
/haiku/src/apps/haikudepot/ui/
H A DFilterView.h40 const BString& code);
42 const BString& code);
H A DFilterView.cpp129 category code. If the supplied code was found and the item marked
134 FilterView::_SelectCategoryCode(BMenu* menu, const BString& code) argument
138 if (_MatchesCategoryCode(item, code)) {
148 FilterView::_MatchesCategoryCode(BMenuItem* item, const BString& code) argument
154 message->FindString("code", &itemCode);
155 return itemCode == code;
166 message->AddString("code", category->Code());
/haiku/src/apps/codycam/
H A DFtpClient.cpp42 int code, codeType; local
52 if (_GetReply(replyString, code, codeType) == true) {
66 int code, codeType, numRead; local
72 _GetReply(replyString, code, codeType);
78 if (_GetReply(replyString, code, codeType)) {
88 if (_GetReply(replyString, code, codeType)) {
109 int code, codeType; local
115 if (_GetReply(replyString, code, codeType) == true) {
136 int code, codeType; local
152 if (_GetReply(replyString, code, codeTyp
200 int code, codeType, rlen, slen, i; local
283 int code, codeType, rlen, slen, i; local
365 int code, codeType; local
390 int code, codeType; local
596 int i, code, codeType; local
[all...]
/haiku/src/servers/input/
H A DInputServer.h52 void Control(uint32 code, BMessage* message);
167 uint32 code, BMessage* message);
/haiku/src/kits/interface/
H A DTextControl.cpp940 BTextControl::Perform(perform_code code, void* _data) argument
942 switch (code) {
1021 return BControl::Perform(code, _data);
H A DMenuBar.cpp391 BMenuBar::Perform(perform_code code, void* _data) argument
393 switch (code) {
450 return BMenu::Perform(code, _data);
H A DDragger.cpp290 BDragger::MouseMoved(BPoint point, uint32 code, const BMessage* msg) argument
292 BView::MouseMoved(point, code, msg);
315 // This code is used whenever the "are draggers drawn" option is
454 BDragger::Perform(perform_code code, void* _data) argument
456 switch (code) {
505 return BView::Perform(code, _data);
/haiku/src/system/boot/platform/next_m68k/
H A Dkeyboard.cpp49 switch (key.code.ascii) {
H A Dkeyboard.h12 uint8 bios; // scan code
15 } code; member in union:key
/haiku/headers/os/interface/
H A DScrollBar.h44 virtual void MouseMoved(BPoint where, uint32 code,
H A DScrollView.h47 virtual void MouseMoved(BPoint where, uint32 code,
H A DShelf.h55 virtual status_t Perform(perform_code code, void* data);
H A DDragger.h58 virtual status_t Perform(perform_code code, void* data);
/haiku/src/kits/tracker/
H A DDialogPane.h60 virtual void MouseMoved(BPoint where, uint32 code, const BMessage*);
H A DDialogPane.cpp147 PaneSwitch::MouseMoved(BPoint point, uint32 code, const BMessage* message) argument
167 BControl::MouseMoved(point, code, message);
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DVolume.cpp538 hash_function_for_code(uint32 code) argument
542 switch (code) {
568 uint32 code = _DetectHashFunction(); local
569 fHashFunction = hash_function_for_code(code);
574 "%" B_PRIu32 "\n", code));
/haiku/src/add-ons/accelerants/radeon/
H A Dpll.c187 dividers->post_code = pll->post_divs[best_post_div_idx].code;
189 dividers->extra_post_code = pll->post_divs[best_extra_post_div_idx].code;
359 // in the original code, they set it to 330kHz if PAL is requested and
363 // in the original code, they don't define an upper limit
380 // in sample code, these limits are set in a strange way;
385 // in sample code, they use a variable post divider during calculation, but
393 // in sample code, lower limit is 4, but in register spec they say everything but 0/1
/haiku/src/add-ons/translators/gif/
H A DGIFSave.cpp444 GIFSave::OutputCode(short code, int BITS, bool flush) argument
447 bit_buffer |= (unsigned int)code << bit_count;
467 bit_buffer |= (unsigned int) code << bit_count;

Completed in 103 milliseconds

1234567891011>>