Searched refs:button (Results 1 - 25 of 26) sorted by relevance

12

/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/jfs/
H A Djfs_debug.h65 #define jFYI(button, prspec) \
66 do { if (button && jfsloglevel > 1) printk prspec; } while (0)
70 #define jERROR(button, prspec) \
71 do { if (button && jfsloglevel > 0) { printk prspec; } } while (0)
74 #define jEVENT(button,prspec) \
75 do { if (button) printk prspec; } while (0)
84 #define jEVENT(button,prspec)
85 #define jERROR(button,prspec)
86 #define jFYI(button,prspec)
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/acpi/ospm/button/
H A Dbn.c47 * DESCRIPTION: Prints out information on a specific button.
53 BN_CONTEXT *button)
60 if (!button) {
73 acpi_get_name(button->acpi_handle, ACPI_FULL_PATHNAME, &buffer);
76 * Print out basic button information.
80 switch (button->type) {
84 ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INFO, "| Power_button[%02x]:[%p] %s\n", button->device_handle, button->acpi_handle, (char*)buffer.pointer));
89 ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INFO, "| Sleep_button[%02x]:[%p] %s\n", button->device_handle, button
52 bn_print( BN_CONTEXT *button) argument
125 BN_CONTEXT *button = NULL; local
244 BN_CONTEXT *button = NULL; local
[all...]
H A Dbn_osl.c41 #define BN_PROC_ROOT "button"
67 BN_CONTEXT *button)
71 if (!button) {
75 switch (button->type) {
166 BN_CONTEXT *button)
168 if (!button) {
172 switch (button->type) {
202 BN_CONTEXT *button)
206 if (!button) {
214 switch(button
66 bn_osl_add_device( BN_CONTEXT *button) argument
165 bn_osl_remove_device( BN_CONTEXT *button) argument
200 bn_osl_generate_event( u32 event, BN_CONTEXT *button) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/scripts/lxdialog/
H A Dyesno.c46 int i, x, y, key = 0, button = 0; local
101 button = ((key == KEY_LEFT ? --button : ++button) < 0)
102 ? 1 : (button > 1 ? 0 : button);
104 print_buttons(dialog, height, width, button);
110 return button;
H A Dinputbox.c50 int input_x = 0, scroll = 0, key = 0, button = -1; local
126 if (button == -1) { /* Input box selected */
189 switch (button) {
191 button = 1; /* Indicates "Cancel" button is selected */
195 button = -1; /* Indicates input box is selected */
201 button = 0; /* Indicates "OK" button is selected */
209 switch (button) {
211 button
[all...]
H A Dchecklist.c125 int key = 0, button = 0, choice = 0, scroll = 0, max_choice, *status; local
311 button = ((key == KEY_LEFT ? --button : ++button) < 0)
312 ? 1 : (button > 1 ? 0 : button);
314 print_buttons(dialog, height, width, button);
321 if (!button) {
353 return button;
H A Dmenubox.c172 int key = 0, button = 0, scroll = 0, choice = 0, first_item = 0, max_choice; local
391 button = ((key == KEY_LEFT ? --button : ++button) < 0)
392 ? 2 : (button > 2 ? 0 : button);
394 print_buttons(dialog, height, width, button);
419 button = 2;
422 if (button == 2)
431 return button;
[all...]
/asus-wl-520gu-7.0.1.45/src/router/config/
H A Dyesno.c46 int i, x, y, key = 0, button = 0; local
101 button = ((key == KEY_LEFT ? --button : ++button) < 0)
102 ? 1 : (button > 1 ? 0 : button);
104 print_buttons(dialog, height, width, button);
110 return button;
H A Dinputbox.c50 int input_x = 0, scroll = 0, key = 0, button = -1; local
126 if (button == -1) { /* Input box selected */
189 switch (button) {
191 button = 1; /* Indicates "Cancel" button is selected */
195 button = -1; /* Indicates input box is selected */
201 button = 0; /* Indicates "OK" button is selected */
209 switch (button) {
211 button
[all...]
H A Dchecklist.c126 int key = 0, button = 0, choice = 0, scroll = 0, max_choice, *status; local
312 button = ((key == KEY_LEFT ? --button : ++button) < 0)
313 ? 1 : (button > 1 ? 0 : button);
315 print_buttons(dialog, height, width, button);
322 if (!button) {
347 return button;
H A Dmenubox.c171 int key = 0, button = 0, scroll = 0, choice = 0, first_item = 0, max_choice; local
390 button = ((key == KEY_LEFT ? --button : ++button) < 0)
391 ? 2 : (button > 2 ? 0 : button);
393 print_buttons(dialog, height, width, button);
418 button = 2;
424 return button;
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/acpi/ospm/include/
H A Dbn.h60 * TBD: Power and Sleep button HIDs also exist in <bm.h>. Should all
110 BN_CONTEXT *button);
114 BN_CONTEXT *button);
119 BN_CONTEXT *button);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/acpi/ospm/
H A DMakefile17 subdir-$(CONFIG_ACPI_BUTTON) += button
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/joystick/
H A Damijoy.c55 int i, data = 0, button = 0; local
61 case 0: data = ~custom.joy0dat; button = (~ciaa.pra >> 6) & 1; break;
62 case 1: data = ~custom.joy1dat; button = (~ciaa.pra >> 7) & 1; break;
65 input_report_key(amijoy_dev + i, BTN_TRIGGER, button);
H A Diforce.c551 static unsigned char find_button(struct iforce *iforce, signed short button) argument
555 if (iforce->type->btn[i] == button)
565 u8 effect_type, u8 axes, u16 duration, u16 delay, u16 button,
576 data[2] = LO(axes) | find_button(iforce, button);
642 effect->trigger.button,
681 effect->trigger.button,
759 effect->trigger.button, effect->trigger.interval,
564 make_core(struct iforce* iforce, u16 id, u16 mod_id1, u16 mod_id2, u8 effect_type, u8 axes, u16 duration, u16 delay, u16 button, u16 interval, u16 direction) argument
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/usb/
H A Dse401.h203 int button; member in struct:usb_se401
H A Dkonicawc.c229 int button = cam->buttonsts; local
258 * bit 4 0 button not clicked
259 * 1 button clicked
260 * button is used to `take a picture' (in software)
264 button = !!(sts & 0x40);
268 /* work out the button status, but dont do
271 if(button != cam->buttonsts) {
272 DEBUG(2, "button: %sclicked", button ? "" : "un");
273 cam->buttonsts = button;
[all...]
H A Dkbtab.c33 int button; member in struct:kbtab
H A Dscanner.c452 data = &scn->button;
1041 &scn->button, 1, irq_scanner, scn,
H A Dse401.c156 out+=sprintf(out, "button state : %s\n", YES_NO (se401->button));
157 out+=sprintf(out, "button pressed : %s\n", YES_NO (se401->buttonpressed));
429 /* irq handler for snapshot button */
440 if (se401->button)
1417 /* Start interrupt transfers for snapshot button */
1425 &se401->button, sizeof(se401->button),
H A Dscanner.h372 unsigned char button; /* Front panel buffer */ member in struct:scn_usb_data
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/macintosh/
H A Dmac_keyb.c17 * - Standard 1 button mouse
60 #define MOUSE_DATAREG 0 /* reg# for movement/button codes from mouse */
275 #define ADBMOUSE_MACALLY2 9 /* MacAlly 2-button mouse */
337 to avoid conflict with button emulation */
349 int button; local
353 button = keycode == adb_button2_keycode? 2: 3;
354 if (data[button] != up_flag) {
356 data[button] = up_flag;
425 /* [ACA:23-Mar-97] Three button mouse support. This is designed to
427 three-button mic
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/media/video/
H A Dcpia.h211 u8 button; /* snapshot button pressed (R/O) */ member in struct:cam_params::__anon1600
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dinput.h498 __u16 button; /* Number of button triggering an effect */ member in struct:ff_trigger
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dinput.h498 __u16 button; /* Number of button triggering an effect */ member in struct:ff_trigger

Completed in 113 milliseconds

12