Searched refs:argument (Results 1 - 25 of 102) sorted by path

12345

/haiku-fatelf/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php71 // timeout before the demo session is killed, as argument to /bin/sleep
/haiku-fatelf/
H A Dconfigure463 *) echo Invalid argument: \`$1\'; exit 1;;
/haiku-fatelf/docs/user/
H A Dapidoc.dox181 Most commands accept an argument. Arguments can be one of these three types:
182 - \<single_word\> - The argument is a single word.
183 - (until the end of the line) - The argument runs until the end of the line.
184 - {paragraph} - The argument runs for an entire paragraph. A paragraph is
411 argument, the name of the section, and it inserts a link with the name of
/haiku-fatelf/headers/build/
H A DBeOSBuildCompatibility.h136 int _haiku_build_fcntl(int fd, int op, int argument);
/haiku-fatelf/headers/build/os/
H A DBeBuild.h67 #define _UNUSED(argument) argument
/haiku-fatelf/headers/libs/iconv/
H A Diconv.h82 extern int iconvctl(iconv_t cd, int request, void* argument);
138 invoked. Their argument list therefore does not matter. */
152 #define ICONV_TRIVIALP 0 /* int *argument */
153 #define ICONV_GET_TRANSLITERATE 1 /* int *argument */
154 #define ICONV_SET_TRANSLITERATE 2 /* const int *argument */
155 #define ICONV_GET_DISCARD_ILSEQ 3 /* int *argument */
156 #define ICONV_SET_DISCARD_ILSEQ 4 /* const int *argument */
157 #define ICONV_SET_HOOKS 5 /* const struct iconv_hooks *argument */
158 #define ICONV_SET_FALLBACKS 6 /* const struct iconv_fallbacks *argument */
/haiku-fatelf/headers/os/
H A DBeBuild.h75 #define _UNUSED(argument) argument
/haiku-fatelf/headers/os/interface/
H A DRadioButton.h61 virtual status_t Perform(perform_code d, void* argument);
/haiku-fatelf/headers/posix/
H A Dpthread.h55 void (*function)(void *argument);
56 void *argument; member in struct:__pthread_cleanup_handler
63 __handler.argument = (arg); \
68 __handler.function(__handler.argument); \
/haiku-fatelf/headers/private/kernel/
H A DDPC.h43 void SetTo(void (*function)(void*), void* argument);
67 status_t Add(void (*function)(void*), void* argument,
H A Dvfs.h179 status_t _user_fcntl(int fd, int op, size_t argument);
/haiku-fatelf/headers/private/net/
H A Dnet_datalink_protocol.h37 void* argument, size_t length);
H A Dnet_device.h50 status_t (*control)(net_device* device, int32 op, void* argument,
/haiku-fatelf/headers/private/system/
H A Dsyscalls.h256 extern status_t _kern_fcntl(int fd, int op, size_t argument);
/haiku-fatelf/src/add-ons/kernel/drivers/display/
H A Ddisplay_controls.cpp52 acpi_object_type argument; local
69 argument.object_type = ACPI_TYPE_INTEGER;
70 argument.data.integer = BIOS_DISPLAY_SWITCH | BIOS_BRIGHTNESS_CONTROL;
72 arguments.pointer = &argument;
/haiku-fatelf/src/add-ons/kernel/drivers/power/acpi_battery/
H A Dacpi_battery.cpp187 acpi_object_type argument; local
188 argument.object_type = ACPI_TYPE_INTEGER;
189 argument.data.integer = info->current_rate;
193 arguments.pointer = &argument;
/haiku-fatelf/src/add-ons/kernel/network/datalink_protocols/arp/
H A Darp.cpp1153 arp_control(net_datalink_protocol *_protocol, int32 op, void *argument, argument
1157 return protocol->next->module->control(protocol->next, op, argument,
/haiku-fatelf/src/add-ons/kernel/network/datalink_protocols/ethernet_frame/
H A Dethernet_frame.cpp195 void* argument, size_t length)
197 return protocol->next->module->control(protocol->next, option, argument,
194 ethernet_frame_control(net_datalink_protocol* protocol, int32 option, void* argument, size_t length) argument
/haiku-fatelf/src/add-ons/kernel/network/datalink_protocols/ipv6_datagram/
H A Dipv6_datagram.cpp1166 ipv6_datalink_control(net_datalink_protocol* protocol, int32 op, void* argument, argument
1169 return protocol->next->module->control(protocol->next, op, argument,
/haiku-fatelf/src/add-ons/kernel/network/datalink_protocols/loopback_frame/
H A Dloopback_frame.cpp135 void* argument, size_t length)
137 return protocol->next->module->control(protocol->next, option, argument,
134 loopback_frame_control(net_datalink_protocol* protocol, int32 option, void* argument, size_t length) argument
/haiku-fatelf/src/add-ons/kernel/network/devices/dialup/
H A Ddialup.cpp360 dialup_control(net_device* _device, int32 op, void* argument, argument
364 return ioctl(device->fd, op, argument, length);
/haiku-fatelf/src/add-ons/kernel/network/devices/ethernet/
H A Dethernet.cpp234 ethernet_control(net_device *_device, int32 op, void *argument, argument
238 return ioctl(device->fd, op, argument, length);
/haiku-fatelf/src/add-ons/kernel/network/devices/loopback/
H A Dloopback.cpp103 loopback_control(net_device *device, int32 op, void *argument, argument
/haiku-fatelf/src/add-ons/kernel/network/stack/
H A Ddatalink.cpp743 void* argument, size_t length)
745 TRACE("%s(%p, option %s, argument %p, length %zu)\n", __FUNCTION__,
746 _protocol, option_to_string(option), argument, length);
761 if (user_memcpy(&request, argument, sizeof(struct ifreq)) != B_OK)
777 &((struct ifreq*)argument)->ifr_addr, maxLength);
788 return user_memcpy(&((struct ifreq*)argument)->ifr_count,
795 if (user_memcpy(&request, argument, sizeof(ifaliasreq)) != B_OK)
819 &((struct ifaliasreq*)argument)->ifra_index,
825 (sockaddr*)&((struct ifaliasreq*)argument)->ifra_addr,
830 (sockaddr*)&((struct ifaliasreq*)argument)
742 interface_protocol_control(net_datalink_protocol* _protocol, int32 option, void* argument, size_t length) argument
[all...]
H A Droutes.cpp392 int32 option, void* argument, size_t length)
407 if (user_memcpy(&entry, &((ifreq*)argument)->ifr_route,
391 control_routes(struct net_interface* _interface, net_domain* domain, int32 option, void* argument, size_t length) argument

Completed in 173 milliseconds

12345