Searched refs:returnValue (Results 1 - 25 of 34) sorted by relevance

12

/haiku-fatelf/src/libs/posix_error_mapper/
H A Dposix_error_mapper.h14 #define GET_REAL_FUNCTION(returnValue, function, parameters) \
15 static returnValue (*sReal_##function)parameters \
16 = (returnValue (*)parameters)dlsym(RTLD_DEFAULT, #function)
20 #define WRAPPER_FUNCTION(returnValue, function, parameters, body) \
21 returnValue function parameters \
24 GET_REAL_FUNCTION(returnValue, function, parameters); \
/haiku-fatelf/src/tests/system/kernel/
H A Dfibo_exec.cpp86 status_t status, returnValue = 0; local
88 status = wait_for_thread(childA, &returnValue);
92 result = returnValue;
97 status = wait_for_thread(childB, &returnValue);
101 result += returnValue;
H A Dfibo_fork.cpp73 status_t status, returnValue = 0; local
75 status = wait_for_thread(childA, &returnValue);
79 result = returnValue;
84 status = wait_for_thread(childB, &returnValue);
88 result += returnValue;
H A Dfibo_load_image.cpp74 status_t returnValue = 0; local
76 status = wait_for_thread(threadA, &returnValue);
80 result = returnValue;
85 status = wait_for_thread(threadB, &returnValue);
89 result += returnValue;
/haiku-fatelf/data/etc/
H A Dprofile71 returnValue=0
86 returnValue=1
90 "") returnValue=1
100 return $returnValue
/haiku-fatelf/src/apps/cortex/DiagramView/
H A DDiagramItem.cpp135 int returnValue = 0; local
140 returnValue = 1;
144 returnValue = -1;
146 return returnValue;
/haiku-fatelf/src/add-ons/kernel/drivers/network/sis900/
H A Dinterface.c37 uint16 returnValue = 0; local
65 returnValue = (returnValue << 1) | ((EEPROM_READ32() & SiS900_EEPROM_DATA_OUT) ? 1 : 0);
73 return returnValue;
/haiku-fatelf/src/apps/cortex/DormantNodeView/
H A DDormantNodeListItem.cpp287 int returnValue = 0; local
297 returnValue = -1;
300 returnValue = 1;
302 return returnValue;
310 int returnValue = 0; local
316 returnValue = -1;
319 returnValue = 1;
321 return returnValue;
/haiku-fatelf/src/add-ons/kernel/bus_managers/acpi/
H A DACPIPrivate.h119 acpi_objects *args, acpi_object_type *returnValue,
122 acpi_objects *args, acpi_data *returnValue);
208 acpi_objects* args, acpi_object_type* returnValue, size_t bufferLength);
210 acpi_objects* args, acpi_data* returnValue);
213 acpi_data* returnValue);
215 acpi_data* returnValue);
217 acpi_data* returnValue);
H A DDevice.cpp71 acpi_objects *args, acpi_data *returnValue)
73 return evaluate_method(device->handle, method, args, returnValue);
70 acpi_evaluate_method(acpi_device device, const char *method, acpi_objects *args, acpi_data *returnValue) argument
H A DBusManager.cpp558 acpi_object_type* returnValue, size_t bufferLength)
563 buffer.Pointer = returnValue;
567 (ACPI_OBJECT_LIST*)args, returnValue != NULL ? &buffer : NULL);
577 acpi_objects *args, acpi_data *returnValue)
582 (ACPI_OBJECT_LIST*)args, (ACPI_BUFFER*)returnValue);
557 evaluate_object(acpi_handle handle, const char* object, acpi_objects *args, acpi_object_type* returnValue, size_t bufferLength) argument
576 evaluate_method(acpi_handle handle, const char* method, acpi_objects *args, acpi_data *returnValue) argument
/haiku-fatelf/src/tools/restest/
H A Drestest.cpp314 int returnValue = 0; local
332 returnValue = 1;
338 returnValue = 1;
345 returnValue = 1;
349 return returnValue;
/haiku-fatelf/src/apps/processcontroller/
H A DPCWorld.cpp79 status_t returnValue; local
80 wait_for_thread(id, &returnValue);
/haiku-fatelf/src/system/kernel/
H A Dsyscalls.cpp433 PostSyscall(uint32 syscall, uint64 returnValue) argument
436 fReturnValue(returnValue)
441 && returnValue != (returnValue & 0xffffffff)
477 extern "C" void trace_post_syscall(int syscallNumber, uint64 returnValue);
480 trace_post_syscall(int syscallNumber, uint64 returnValue) argument
487 returnValue);
/haiku-fatelf/src/bin/addattr/
H A Dmain.cpp109 usage(int returnValue) argument
119 exit(returnValue);
/haiku-fatelf/src/bin/
H A Dmvattr.cpp145 usage(int returnValue) argument
155 exit(returnValue);
/haiku-fatelf/src/kits/screensaver/
H A DScreenSaverRunner.cpp79 status_t returnValue; local
80 wait_for_thread(fThread, &returnValue);
/haiku-fatelf/src/add-ons/tracker/zipomatic/
H A DGenericThread.h30 void ExitWithReturnValue(status_t returnValue);
/haiku-fatelf/headers/os/drivers/
H A DACPI.h240 acpi_objects *args, acpi_object_type *returnValue, size_t bufferLength);
242 acpi_objects *args, acpi_data *returnValue);
319 acpi_objects *args, acpi_data *returnValue);
/haiku-fatelf/src/bin/network/telnet/
H A Dsys_bsd.c926 int returnValue = 0;
1106 returnValue = 1;
1134 returnValue = 1; /* did something useful */
1139 returnValue |= netflush();
1143 returnValue |= (ttyflush(SYNCHing|flushout) > 0);
1146 return returnValue;
924 int returnValue = 0; local
H A Dtelnet.c1646 int returnValue = 0;
1654 returnValue = 1;
1865 return returnValue||count;
1887 int returnValue = 0;
1899 returnValue = 1;
2020 return returnValue||count; /* Non-zero if we did anything */
2036 /* One wants to be a bit careful about setting returnValue
2040 int returnValue;
2063 returnValue = process_rings(netin, netout, netex, ttyin, ttyout, !block);
2068 returnValue |
1641 int returnValue = 0; local
1882 int returnValue = 0; local
2034 int returnValue; local
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dstub.c175 wait_for_thread(thread_id thread, status_t *returnValue) argument
/haiku-fatelf/headers/private/kernel/
H A Dteam.h70 void _user_exit_team(status_t returnValue);
H A Duser_debugger.h254 void user_debug_post_syscall(uint32 syscall, void *args, uint64 returnValue,
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dnanohttp.c149 int returnValue; /* the protocol return value */ member in struct:xmlNanoHTTPCtxt
391 ret->returnValue = 0;
689 ctxt->returnValue = ret;
1438 if ((ctxt->location != NULL) && (ctxt->returnValue >= 300) &&
1439 (ctxt->returnValue < 400)) {
1482 ctxt->returnValue, ctxt->contentType);
1486 ctxt->returnValue);
1618 return(ctxt->returnValue);

Completed in 277 milliseconds

12