Searched refs:op (Results 176 - 200 of 495) sorted by path

1234567891011>>

/haiku/src/system/kernel/device_manager/
H A DFileDevice.h40 virtual status_t Control(void* cookie, int32 op, void* buffer,
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_mkquery.c103 int op, /*!< opcode of query */
122 _res_opcodes[op], dname, p_class(class), p_type(type));
133 hp->opcode = op;
146 switch (op) {
160 if (op == QUERY || data == NULL)
102 res_nmkquery(res_state statp, int op, const char *dname, int class, int type, const u_char *data, int datalen, const u_char *newrr_in, u_char *buf, int buflen) argument
/haiku/src/system/libroot/os/arch/arm/
H A Dstdatomic.c170 #define EMIT_FETCH_OP_N(N, uintN_t, name, op) \
178 *mem op val; \
291 #define EMIT_FETCH_OP_N(N, uintN_t, ldr, str, name, op) \
307 "\t"op" %2, %0, %3\n" /* Calculate new value. */ \
530 #define EMIT_ARITHMETIC_FETCH_AND_OP_N(N, uintN_t, name, op) \
549 "\t"op" %2, %0, %4\n" /* Calculate new value. */ \
568 #define EMIT_BITWISE_FETCH_AND_OP_N(N, uintN_t, name, op, idempotence) \
584 "\t"op" %2, %4, %0\n" /* Calculate new value. */ \
643 #define EMIT_FETCH_AND_OP_4(name, op) \
653 "\t"op"
[all...]
/haiku/src/system/libroot/os/arch/sparc/
H A Dsoftfloat.c37 #define _QP_OP(op) \
38 void _Qp_ ## op(u_int *c, u_int *a, u_int *b); \
40 _Qp_ ## op(u_int *c, u_int *a, u_int *b) \
52 r = __fpu_ ## op(&fe); \
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregcomp.c1304 bin_tree_t *op, *cls, *tree1, *tree;
1319 op = create_tree (dfa, NULL, NULL, OP_OPEN_SUBEXP);
1322 tree = create_tree (dfa, op, tree1, CONCAT);
1323 if (BE (tree == NULL || tree1 == NULL || op == NULL || cls == NULL, 0))
1329 op->token.opr.idx = cls->token.opr.idx = node->token.opr.idx;
1330 op->token.opt_subexp = cls->token.opt_subexp = node->token.opt_subexp;
1297 bin_tree_t *op, *cls, *tree1, *tree; local
/haiku/src/system/libroot/posix/sys/
H A Dflock.c17 flock(int fd, int op) argument
19 status_t status = _kern_flock(fd, op);
/haiku/src/tests/add-ons/kernel/bus_managers/agp_gart/
H A Dgart_tester.cpp117 gart_std_ops(int32 op, ...) argument
119 switch (op) {
/haiku/src/tests/add-ons/kernel/busses/scsi/example/
H A Dexample_scsi.c22 example_std_ops(int32 op, ...) argument
26 switch (op) {
166 example_ioctl(scsi_sim_cookie cookie, uint8 targetID, uint32 op, void *buffer, argument
/haiku/src/tests/add-ons/kernel/file_systems/bfs/queries/
H A Dtest.cpp73 waitForMessage(port_id port,const char *string,int32 op,char *name) argument
80 if (op == B_TIMED_OUT && bytes == B_TIMED_OUT) {
97 || message.FindInt32("opcode") != op) {
98 printf("Expected what = %x, opcode = %ld, got:", B_QUERY_UPDATE, op);
104 return op;
/haiku/src/tests/add-ons/kernel/network/
H A Duserland_ipc.c26 int op; member in struct:commands_info
30 #define C2N(op) { op, #op }
229 while(ci && ci->op) {
230 if (ci->op == command->op)
237 ci->name, command->op, index, args, command->length, command->result);
239 switch (command->op) {
260 if (command->op
[all...]
/haiku/src/tests/kits/storage/
H A DQueryTest.cpp45 status_t PushOp(query_op op) argument
47 BQuery::PushOp(op);
276 OpNode(query_op op, PredicateNode *left, PredicateNode *right = NULL) argument
277 : ListNode(left, right), op(op) {}
285 error = query.PushOp(op);
300 switch (op) {
368 query_op op; member in class:OpNode
645 TestOperator(query_op op) argument
648 TestPredicate(OpNode(op,
[all...]
/haiku/src/tests/system/kernel/device_manager/
H A Dconfig.c72 config_ioctl(void *cookie, uint32 op, void *buffer, size_t len) argument
82 if (params == NULL || params->magic != op)
85 switch (op) {
/haiku/src/tests/system/kernel/device_manager/playground/
H A Ddevice_manager.h177 status_t (*device_ioctl)(void *cookie, int32 op, void *buffer,
H A Ddriver.cpp151 device_ioctl(void* cookie, int32 op, void* buffer, size_t length) argument
H A Dgeneric_video_driver.cpp137 device_ioctl(void* cookie, int32 op, void* buffer, size_t length) argument
/haiku/src/tests/system/kernel/file_corruption/driver/
H A Dchecksum_device.cpp943 checksum_control_device_control(void* cookie, uint32 op, void* buffer,
1079 checksum_raw_device_control(void* _cookie, uint32 op, void* buffer,
1085 switch (op) {
/haiku/src/tools/fs_shell/
H A Dfd.h29 fssh_status_t (*fd_ioctl)(struct file_descriptor *, uint32_t op,
H A Dsyscalls.h37 fssh_status_t _kern_fcntl(int fd, int op, uint32_t argument);
93 fssh_status_t _kern_ioctl(int fd, uint32_t op, void *buffer,
/haiku/headers/build/
H A DBeOSBuildCompatibility.h117 int _haiku_build_fcntl(int fd, int op, ...);
122 int _haiku_build_fcntl(int fd, int op, int argument);
161 # define fcntl(fd, op...) _haiku_build_fcntl(fd, op)
/haiku/headers/os/drivers/
H A DDrivers.h26 typedef status_t (*device_control_hook)(void *cookie, uint32 op, void *data,
H A Ddevice_manager.h185 status_t (*control)(void *cookie, uint32 op, void *buffer, size_t length);
H A Dfs_interface.h146 uint32 op, void* buffer, size_t length);
/haiku/headers/os/drivers/tty/
H A Dtty_module.h16 typedef bool (*tty_service_func)(struct tty *tty, uint32 op, void *buffer,
62 status_t (*tty_control)(struct tty_cookie *cookie, uint32 op,
/haiku/headers/posix/
H A Dfcntl.h99 extern int fcntl(int fd, int op, ...);
H A Dunistd.h368 extern int ioctl(int fd, unsigned long op, ...);
374 ioctl(int fd, unsigned long op, void* argument = NULL, size_t size = 0) argument
376 return __ioctl(fd, op, (struct ioctl_args){ argument, size });

Completed in 288 milliseconds

1234567891011>>