Searched refs:go (Results 1 - 25 of 591) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/staging/go7007/
H A Dgo7007-driver.c47 int go7007_read_interrupt(struct go7007 *go, u16 *value, u16 *data) argument
49 go->interrupt_available = 0;
50 go->hpi_ops->read_interrupt(go);
51 if (wait_event_timeout(go->interrupt_waitq,
52 go->interrupt_available, 5*HZ) < 0) {
53 v4l2_err(&go->v4l2_dev, "timeout waiting for read interrupt\n");
56 if (!go->interrupt_available)
58 go->interrupt_available = 0;
59 *value = go
70 go7007_read_addr(struct go7007 *go, u16 addr, u16 *data) argument
92 go7007_load_encoder(struct go7007 *go) argument
141 go7007_boot_encoder(struct go7007 *go, int init_i2c) argument
166 go7007_init_encoder(struct go7007 *go) argument
186 go7007_reset_encoder(struct go7007 *go) argument
199 struct go7007 *go = i2c_get_adapdata(adapter); local
253 go7007_register_encoder(struct go7007 *go) argument
300 go7007_start_encoder(struct go7007 *go) argument
360 frame_boundary(struct go7007 *go) argument
389 write_bitmap_word(struct go7007 *go) argument
407 go7007_parse_video_stream(struct go7007 *go, u8 *buf, int length) argument
599 struct go7007 *go; local
670 go7007_remove(struct go7007 *go) argument
[all...]
H A Dgo7007-v4l2.c69 static void abort_queued(struct go7007 *go) argument
73 list_for_each_entry_safe(gobuf, next, &go->stream, stream) {
78 static int go7007_streamoff(struct go7007 *go) argument
83 mutex_lock(&go->hw_lock);
84 if (go->streaming) {
85 go->streaming = 0;
86 go7007_stream_stop(go);
87 spin_lock_irqsave(&go->spinlock, flags);
88 abort_queued(go);
89 spin_unlock_irqrestore(&go
99 struct go7007 *go = video_get_drvdata(video_devdata(file)); local
118 struct go7007 *go = gofh->go; local
168 set_capture_size(struct go7007 *go, struct v4l2_format *fmt, int try) argument
392 mpeg_s_ctrl(struct v4l2_control *ctrl, struct go7007 *go) argument
491 mpeg_g_ctrl(struct v4l2_control *ctrl, struct go7007 *go) argument
548 struct go7007 *go = ((struct go7007_file *) priv)->go; local
592 struct go7007 *go = ((struct go7007_file *) priv)->go; local
610 struct go7007 *go = ((struct go7007_file *) priv)->go; local
618 struct go7007 *go = ((struct go7007_file *) priv)->go; local
630 struct go7007 *go = gofh->go; local
748 struct go7007 *go = gofh->go; local
812 struct go7007 *go = gofh->go; local
880 struct go7007 *go = gofh->go; local
908 struct go7007 *go = gofh->go; local
922 struct go7007 *go = ((struct go7007_file *) priv)->go; local
935 struct go7007 *go = ((struct go7007_file *) priv)->go; local
946 struct go7007 *go = ((struct go7007_file *) priv)->go; local
957 struct go7007 *go = ((struct go7007_file *) priv)->go; local
975 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1007 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1027 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1046 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1064 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1103 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1121 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1150 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1159 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1174 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1189 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1213 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1228 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1241 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1285 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1444 struct go7007 *go = video_get_drvdata(vfd); local
1506 go7007_v4l2_init(struct go7007 *go) argument
1535 go7007_v4l2_remove(struct go7007 *go) argument
[all...]
H A Dgo7007-priv.h105 int (*interface_reset)(struct go7007 *go);
106 int (*write_interrupt)(struct go7007 *go, int addr, int data);
107 int (*read_interrupt)(struct go7007 *go);
108 int (*stream_start)(struct go7007 *go);
109 int (*stream_stop)(struct go7007 *go);
110 int (*send_firmware)(struct go7007 *go, u8 *data, int len);
111 int (*send_command)(struct go7007 *go, unsigned int cmd, void *arg);
119 struct go7007 *go; /* Reverse reference for VMA ops */ member in struct:go7007_buffer
136 struct go7007 *go; member in struct:go7007_file
230 void (*audio_deliver)(struct go7007 *go, u
[all...]
H A Dgo7007-fw.c301 static int mjpeg_frame_header(struct go7007 *go, unsigned char *buf, int q) argument
321 buf[p++] = go->height >> 8;
322 buf[p++] = go->height & 0xff;
323 buf[p++] = go->width >> 8;
324 buf[p++] = go->width & 0xff;
376 static int gen_mjpeghdr_to_package(struct go7007 *go, __le16 *code, int space) argument
391 mjpeg_frame_header(go, buf + size, i);
394 chunk = mjpeg_frame_header(go, buf + size, 1);
430 static int mpeg1_frame_header(struct go7007 *go, unsigned char *buf, argument
434 int rows = go
538 mpeg1_sequence_header(struct go7007 *go, unsigned char *buf, int ext) argument
645 gen_mpeg1hdr_to_package(struct go7007 *go, __le16 *code, int space, int *framelen) argument
724 vti_bitlen(struct go7007 *go) argument
732 mpeg4_frame_header(struct go7007 *go, unsigned char *buf, int modulo, enum mpeg_frame_type frame) argument
786 mpeg4_sequence_header(struct go7007 *go, unsigned char *buf, int ext) argument
832 gen_mpeg4hdr_to_package(struct go7007 *go, __le16 *code, int space, int *framelen) argument
936 brctrl_to_package(struct go7007 *go, __le16 *code, int space, int *framelen) argument
1073 config_package(struct go7007 *go, __le16 *code, int space) argument
1195 seqhead_to_package(struct go7007 *go, __le16 *code, int space, int (*sequence_header_func)(struct go7007 *go, unsigned char *buf, int ext)) argument
1274 avsync_to_package(struct go7007 *go, __le16 *code, int space) argument
1305 final_package(struct go7007 *go, __le16 *code, int space) argument
1368 audio_to_package(struct go7007 *go, __le16 *code, int space) argument
1418 modet_to_package(struct go7007 *go, __le16 *code, int space) argument
1487 do_special(struct go7007 *go, u16 type, __le16 *code, int space, int *framelen) argument
1534 go7007_construct_fw_image(struct go7007 *go, u8 **fw, int *fwlen) argument
[all...]
H A Dgo7007-i2c.c53 static int go7007_i2c_xfer(struct go7007 *go, u16 addr, int read, argument
59 if (go->status == STATUS_SHUTDOWN)
72 mutex_lock(&go->hw_lock);
74 if (go->board_id == GO7007_BOARDID_ADLINK_MPG24) {
77 go7007_write_addr(go, 0x3c82, 0x0020);
82 if (go7007_read_addr(go, STATUS_REG_ADDR, &val) < 0)
94 go7007_write_addr(go, I2C_CTRL_REG_ADDR, flags);
95 go7007_write_addr(go, I2C_LO_ADDR_REG_ADDR, command);
99 go7007_write_addr(go, I2C_DATA_REG_ADDR, *data);
100 go7007_write_addr(go, I2C_DEV_UP_ADDR_REG_ADD
147 struct go7007 *go = i2c_get_adapdata(adapter); local
163 struct go7007 *go = i2c_get_adapdata(adapter); local
213 go7007_i2c_init(struct go7007 *go) argument
[all...]
H A Dgo7007-usb.c557 static int go7007_usb_vendor_request(struct go7007 *go, int request, argument
560 struct go7007_usb *usb = go->hpi_context;
576 static int go7007_usb_interface_reset(struct go7007 *go) argument
578 struct go7007_usb *usb = go->hpi_context;
582 if (go7007_write_interrupt(go, 0x0001, 0x0001) < 0)
591 if (go7007_usb_vendor_request(go, 0x10, 0, 0, NULL, 0, 0) < 0 ||
592 go7007_usb_vendor_request(go, 0x10, 0, 0, NULL, 0, 0) < 0)
596 if (go7007_write_interrupt(go, 0x0001, 0x0001) < 0)
602 if (go7007_read_interrupt(go, &intr_val, &intr_data) < 0 ||
611 static int go7007_usb_ezusb_write_interrupt(struct go7007 *go, argument
660 go7007_usb_onboard_write_interrupt(struct go7007 *go, int addr, int data) argument
693 struct go7007 *go = (struct go7007 *)urb->context; local
722 go7007_usb_read_interrupt(struct go7007 *go) argument
738 struct go7007 *go = (struct go7007 *)urb->context; local
762 struct go7007 *go = (struct go7007 *)urb->context; local
783 go7007_usb_stream_start(struct go7007 *go) argument
818 go7007_usb_stream_stop(struct go7007 *go) argument
833 go7007_usb_send_firmware(struct go7007 *go, u8 *data, int len) argument
875 struct go7007 *go = i2c_get_adapdata(adapter); local
969 struct go7007 *go; local
1237 struct go7007 *go = to_go7007(usb_get_intfdata(intf)); local
[all...]
H A Dsaa7134-go7007.c141 static int saa7134_go7007_interface_reset(struct go7007 *go) argument
143 struct saa7134_go7007 *saa = go->hpi_context;
178 if (go7007_read_interrupt(go, &intr_val, &intr_data) < 0 ||
187 static int saa7134_go7007_write_interrupt(struct go7007 *go, int addr, int data) argument
189 struct saa7134_go7007 *saa = go->hpi_context;
217 static int saa7134_go7007_read_interrupt(struct go7007 *go) argument
219 struct saa7134_go7007 *saa = go->hpi_context;
222 go->interrupt_available = 1;
223 gpio_read(dev, HPI_ADDR_INTR_RET_VALUE, &go->interrupt_value);
224 gpio_read(dev, HPI_ADDR_INTR_RET_DATA, &go
235 struct go7007 *go = video_get_drvdata(dev->empress_dev); local
256 saa7134_go7007_stream_start(struct go7007 *go) argument
314 saa7134_go7007_stream_stop(struct go7007 *go) argument
343 saa7134_go7007_send_firmware(struct go7007 *go, u8 *data, int len) argument
382 saa7134_go7007_send_command(struct go7007 *go, unsigned int cmd, void *arg) argument
437 struct go7007 *go; local
493 struct go7007 *go; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/staging/go7007/
H A Dgo7007-driver.c47 int go7007_read_interrupt(struct go7007 *go, u16 *value, u16 *data) argument
49 go->interrupt_available = 0;
50 go->hpi_ops->read_interrupt(go);
51 if (wait_event_timeout(go->interrupt_waitq,
52 go->interrupt_available, 5*HZ) < 0) {
53 v4l2_err(&go->v4l2_dev, "timeout waiting for read interrupt\n");
56 if (!go->interrupt_available)
58 go->interrupt_available = 0;
59 *value = go
70 go7007_read_addr(struct go7007 *go, u16 addr, u16 *data) argument
92 go7007_load_encoder(struct go7007 *go) argument
141 go7007_boot_encoder(struct go7007 *go, int init_i2c) argument
166 go7007_init_encoder(struct go7007 *go) argument
186 go7007_reset_encoder(struct go7007 *go) argument
199 struct go7007 *go = i2c_get_adapdata(adapter); local
253 go7007_register_encoder(struct go7007 *go) argument
300 go7007_start_encoder(struct go7007 *go) argument
360 frame_boundary(struct go7007 *go) argument
389 write_bitmap_word(struct go7007 *go) argument
407 go7007_parse_video_stream(struct go7007 *go, u8 *buf, int length) argument
599 struct go7007 *go; local
670 go7007_remove(struct go7007 *go) argument
[all...]
H A Dgo7007-v4l2.c69 static void abort_queued(struct go7007 *go) argument
73 list_for_each_entry_safe(gobuf, next, &go->stream, stream) {
78 static int go7007_streamoff(struct go7007 *go) argument
83 mutex_lock(&go->hw_lock);
84 if (go->streaming) {
85 go->streaming = 0;
86 go7007_stream_stop(go);
87 spin_lock_irqsave(&go->spinlock, flags);
88 abort_queued(go);
89 spin_unlock_irqrestore(&go
99 struct go7007 *go = video_get_drvdata(video_devdata(file)); local
118 struct go7007 *go = gofh->go; local
168 set_capture_size(struct go7007 *go, struct v4l2_format *fmt, int try) argument
392 mpeg_s_ctrl(struct v4l2_control *ctrl, struct go7007 *go) argument
491 mpeg_g_ctrl(struct v4l2_control *ctrl, struct go7007 *go) argument
548 struct go7007 *go = ((struct go7007_file *) priv)->go; local
592 struct go7007 *go = ((struct go7007_file *) priv)->go; local
610 struct go7007 *go = ((struct go7007_file *) priv)->go; local
618 struct go7007 *go = ((struct go7007_file *) priv)->go; local
630 struct go7007 *go = gofh->go; local
748 struct go7007 *go = gofh->go; local
812 struct go7007 *go = gofh->go; local
880 struct go7007 *go = gofh->go; local
908 struct go7007 *go = gofh->go; local
922 struct go7007 *go = ((struct go7007_file *) priv)->go; local
935 struct go7007 *go = ((struct go7007_file *) priv)->go; local
946 struct go7007 *go = ((struct go7007_file *) priv)->go; local
957 struct go7007 *go = ((struct go7007_file *) priv)->go; local
975 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1007 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1027 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1046 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1064 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1103 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1121 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1150 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1159 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1174 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1189 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1213 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1228 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1241 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1285 struct go7007 *go = ((struct go7007_file *) priv)->go; local
1444 struct go7007 *go = video_get_drvdata(vfd); local
1506 go7007_v4l2_init(struct go7007 *go) argument
1535 go7007_v4l2_remove(struct go7007 *go) argument
[all...]
H A Dgo7007-priv.h105 int (*interface_reset)(struct go7007 *go);
106 int (*write_interrupt)(struct go7007 *go, int addr, int data);
107 int (*read_interrupt)(struct go7007 *go);
108 int (*stream_start)(struct go7007 *go);
109 int (*stream_stop)(struct go7007 *go);
110 int (*send_firmware)(struct go7007 *go, u8 *data, int len);
111 int (*send_command)(struct go7007 *go, unsigned int cmd, void *arg);
119 struct go7007 *go; /* Reverse reference for VMA ops */ member in struct:go7007_buffer
136 struct go7007 *go; member in struct:go7007_file
230 void (*audio_deliver)(struct go7007 *go, u
[all...]
H A Dgo7007-fw.c301 static int mjpeg_frame_header(struct go7007 *go, unsigned char *buf, int q) argument
321 buf[p++] = go->height >> 8;
322 buf[p++] = go->height & 0xff;
323 buf[p++] = go->width >> 8;
324 buf[p++] = go->width & 0xff;
376 static int gen_mjpeghdr_to_package(struct go7007 *go, __le16 *code, int space) argument
391 mjpeg_frame_header(go, buf + size, i);
394 chunk = mjpeg_frame_header(go, buf + size, 1);
430 static int mpeg1_frame_header(struct go7007 *go, unsigned char *buf, argument
434 int rows = go
538 mpeg1_sequence_header(struct go7007 *go, unsigned char *buf, int ext) argument
645 gen_mpeg1hdr_to_package(struct go7007 *go, __le16 *code, int space, int *framelen) argument
724 vti_bitlen(struct go7007 *go) argument
732 mpeg4_frame_header(struct go7007 *go, unsigned char *buf, int modulo, enum mpeg_frame_type frame) argument
786 mpeg4_sequence_header(struct go7007 *go, unsigned char *buf, int ext) argument
832 gen_mpeg4hdr_to_package(struct go7007 *go, __le16 *code, int space, int *framelen) argument
936 brctrl_to_package(struct go7007 *go, __le16 *code, int space, int *framelen) argument
1073 config_package(struct go7007 *go, __le16 *code, int space) argument
1195 seqhead_to_package(struct go7007 *go, __le16 *code, int space, int (*sequence_header_func)(struct go7007 *go, unsigned char *buf, int ext)) argument
1274 avsync_to_package(struct go7007 *go, __le16 *code, int space) argument
1305 final_package(struct go7007 *go, __le16 *code, int space) argument
1368 audio_to_package(struct go7007 *go, __le16 *code, int space) argument
1418 modet_to_package(struct go7007 *go, __le16 *code, int space) argument
1487 do_special(struct go7007 *go, u16 type, __le16 *code, int space, int *framelen) argument
1534 go7007_construct_fw_image(struct go7007 *go, u8 **fw, int *fwlen) argument
[all...]
H A Dgo7007-i2c.c53 static int go7007_i2c_xfer(struct go7007 *go, u16 addr, int read, argument
59 if (go->status == STATUS_SHUTDOWN)
72 mutex_lock(&go->hw_lock);
74 if (go->board_id == GO7007_BOARDID_ADLINK_MPG24) {
77 go7007_write_addr(go, 0x3c82, 0x0020);
82 if (go7007_read_addr(go, STATUS_REG_ADDR, &val) < 0)
94 go7007_write_addr(go, I2C_CTRL_REG_ADDR, flags);
95 go7007_write_addr(go, I2C_LO_ADDR_REG_ADDR, command);
99 go7007_write_addr(go, I2C_DATA_REG_ADDR, *data);
100 go7007_write_addr(go, I2C_DEV_UP_ADDR_REG_ADD
147 struct go7007 *go = i2c_get_adapdata(adapter); local
163 struct go7007 *go = i2c_get_adapdata(adapter); local
213 go7007_i2c_init(struct go7007 *go) argument
[all...]
H A Dgo7007-usb.c557 static int go7007_usb_vendor_request(struct go7007 *go, int request, argument
560 struct go7007_usb *usb = go->hpi_context;
576 static int go7007_usb_interface_reset(struct go7007 *go) argument
578 struct go7007_usb *usb = go->hpi_context;
582 if (go7007_write_interrupt(go, 0x0001, 0x0001) < 0)
591 if (go7007_usb_vendor_request(go, 0x10, 0, 0, NULL, 0, 0) < 0 ||
592 go7007_usb_vendor_request(go, 0x10, 0, 0, NULL, 0, 0) < 0)
596 if (go7007_write_interrupt(go, 0x0001, 0x0001) < 0)
602 if (go7007_read_interrupt(go, &intr_val, &intr_data) < 0 ||
611 static int go7007_usb_ezusb_write_interrupt(struct go7007 *go, argument
660 go7007_usb_onboard_write_interrupt(struct go7007 *go, int addr, int data) argument
693 struct go7007 *go = (struct go7007 *)urb->context; local
722 go7007_usb_read_interrupt(struct go7007 *go) argument
738 struct go7007 *go = (struct go7007 *)urb->context; local
762 struct go7007 *go = (struct go7007 *)urb->context; local
783 go7007_usb_stream_start(struct go7007 *go) argument
818 go7007_usb_stream_stop(struct go7007 *go) argument
833 go7007_usb_send_firmware(struct go7007 *go, u8 *data, int len) argument
875 struct go7007 *go = i2c_get_adapdata(adapter); local
969 struct go7007 *go; local
1237 struct go7007 *go = to_go7007(usb_get_intfdata(intf)); local
[all...]
H A Dsaa7134-go7007.c141 static int saa7134_go7007_interface_reset(struct go7007 *go) argument
143 struct saa7134_go7007 *saa = go->hpi_context;
178 if (go7007_read_interrupt(go, &intr_val, &intr_data) < 0 ||
187 static int saa7134_go7007_write_interrupt(struct go7007 *go, int addr, int data) argument
189 struct saa7134_go7007 *saa = go->hpi_context;
217 static int saa7134_go7007_read_interrupt(struct go7007 *go) argument
219 struct saa7134_go7007 *saa = go->hpi_context;
222 go->interrupt_available = 1;
223 gpio_read(dev, HPI_ADDR_INTR_RET_VALUE, &go->interrupt_value);
224 gpio_read(dev, HPI_ADDR_INTR_RET_DATA, &go
235 struct go7007 *go = video_get_drvdata(dev->empress_dev); local
256 saa7134_go7007_stream_start(struct go7007 *go) argument
314 saa7134_go7007_stream_stop(struct go7007 *go) argument
343 saa7134_go7007_send_firmware(struct go7007 *go, u8 *data, int len) argument
382 saa7134_go7007_send_command(struct go7007 *go, unsigned int cmd, void *arg) argument
437 struct go7007 *go; local
493 struct go7007 *go; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openvpn/easy-rsa/2.0/
H A Dclean-all10 chmod go-rwx "$KEY_DIR" && \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openvpn/easy-rsa/2.0/
H A Dclean-all10 chmod go-rwx "$KEY_DIR" && \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openvpn/easy-rsa/2.0/
H A Dclean-all10 chmod go-rwx "$KEY_DIR" && \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/accel-pptp/src/pppd/
H A Dccp.c593 ccp_options *go = &ccp_gotoptions[f->unit]; local
596 *go = ccp_wantoptions[f->unit];
600 if (go->mppe || go->mppc) {
650 if (go->mppc) {
658 go->mppc = 0;
660 if (go->mppe_40) {
668 go->mppe_40 = 0;
670 if (go->mppe_56) {
678 go
765 ccp_options *go = &ccp_gotoptions[f->unit]; local
785 ccp_options *go = &ccp_gotoptions[f->unit]; local
926 ccp_options *go = &ccp_gotoptions[f->unit]; local
1036 ccp_options *go = &ccp_gotoptions[f->unit]; local
1201 ccp_options *go = &ccp_gotoptions[f->unit]; local
1873 ccp_options *go = &ccp_gotoptions[f->unit]; local
[all...]
H A Dlcp.c666 lcp_options *go = &lcp_gotoptions[f->unit]; local
671 *go = *wo;
673 go->neg_mrru = 0;
674 go->neg_ssnhf = 0;
675 go->neg_endpoint = 0;
691 lcp_options *go = &lcp_gotoptions[f->unit]; local
704 return (LENCISHORT(go->neg_mru && go->mru != DEFMRU) +
705 LENCILONG(go->neg_asyncmap && go
729 lcp_options *go = &lcp_gotoptions[f->unit]; local
817 lcp_options *go = &lcp_gotoptions[f->unit]; local
973 lcp_options *go = &lcp_gotoptions[f->unit]; local
1366 lcp_options *go = &lcp_gotoptions[f->unit]; local
1526 lcp_options *go = &lcp_gotoptions[f->unit]; local
1916 lcp_options *go = &lcp_gotoptions[f->unit]; local
1965 lcp_options *go = &lcp_gotoptions[f->unit]; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/pppd/pppd/
H A Dccp.c593 ccp_options *go = &ccp_gotoptions[f->unit]; local
596 *go = ccp_wantoptions[f->unit];
600 if (go->mppe || go->mppc) {
650 if (go->mppc) {
658 go->mppc = 0;
660 if (go->mppe_40) {
668 go->mppe_40 = 0;
670 if (go->mppe_56) {
678 go
765 ccp_options *go = &ccp_gotoptions[f->unit]; local
785 ccp_options *go = &ccp_gotoptions[f->unit]; local
926 ccp_options *go = &ccp_gotoptions[f->unit]; local
1036 ccp_options *go = &ccp_gotoptions[f->unit]; local
1201 ccp_options *go = &ccp_gotoptions[f->unit]; local
1873 ccp_options *go = &ccp_gotoptions[f->unit]; local
[all...]
H A Dlcp.c666 lcp_options *go = &lcp_gotoptions[f->unit]; local
671 *go = *wo;
673 go->neg_mrru = 0;
674 go->neg_ssnhf = 0;
675 go->neg_endpoint = 0;
691 lcp_options *go = &lcp_gotoptions[f->unit]; local
704 return (LENCISHORT(go->neg_mru && go->mru != DEFMRU) +
705 LENCILONG(go->neg_asyncmap && go
729 lcp_options *go = &lcp_gotoptions[f->unit]; local
817 lcp_options *go = &lcp_gotoptions[f->unit]; local
973 lcp_options *go = &lcp_gotoptions[f->unit]; local
1366 lcp_options *go = &lcp_gotoptions[f->unit]; local
1526 lcp_options *go = &lcp_gotoptions[f->unit]; local
1916 lcp_options *go = &lcp_gotoptions[f->unit]; local
1965 lcp_options *go = &lcp_gotoptions[f->unit]; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/accel-pptp/src/pppd/
H A Dccp.c593 ccp_options *go = &ccp_gotoptions[f->unit]; local
596 *go = ccp_wantoptions[f->unit];
600 if (go->mppe || go->mppc) {
650 if (go->mppc) {
658 go->mppc = 0;
660 if (go->mppe_40) {
668 go->mppe_40 = 0;
670 if (go->mppe_56) {
678 go
765 ccp_options *go = &ccp_gotoptions[f->unit]; local
785 ccp_options *go = &ccp_gotoptions[f->unit]; local
926 ccp_options *go = &ccp_gotoptions[f->unit]; local
1036 ccp_options *go = &ccp_gotoptions[f->unit]; local
1201 ccp_options *go = &ccp_gotoptions[f->unit]; local
1873 ccp_options *go = &ccp_gotoptions[f->unit]; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/accel-pptp/src/pppd/
H A Dccp.c593 ccp_options *go = &ccp_gotoptions[f->unit]; local
596 *go = ccp_wantoptions[f->unit];
600 if (go->mppe || go->mppc) {
650 if (go->mppc) {
658 go->mppc = 0;
660 if (go->mppe_40) {
668 go->mppe_40 = 0;
670 if (go->mppe_56) {
678 go
765 ccp_options *go = &ccp_gotoptions[f->unit]; local
785 ccp_options *go = &ccp_gotoptions[f->unit]; local
926 ccp_options *go = &ccp_gotoptions[f->unit]; local
1036 ccp_options *go = &ccp_gotoptions[f->unit]; local
1201 ccp_options *go = &ccp_gotoptions[f->unit]; local
1873 ccp_options *go = &ccp_gotoptions[f->unit]; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/pppd/pppd/
H A Dccp.c593 ccp_options *go = &ccp_gotoptions[f->unit]; local
596 *go = ccp_wantoptions[f->unit];
600 if (go->mppe || go->mppc) {
650 if (go->mppc) {
658 go->mppc = 0;
660 if (go->mppe_40) {
668 go->mppe_40 = 0;
670 if (go->mppe_56) {
678 go
765 ccp_options *go = &ccp_gotoptions[f->unit]; local
785 ccp_options *go = &ccp_gotoptions[f->unit]; local
926 ccp_options *go = &ccp_gotoptions[f->unit]; local
1036 ccp_options *go = &ccp_gotoptions[f->unit]; local
1201 ccp_options *go = &ccp_gotoptions[f->unit]; local
1873 ccp_options *go = &ccp_gotoptions[f->unit]; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/pppd/pppd/
H A Dccp.c593 ccp_options *go = &ccp_gotoptions[f->unit]; local
596 *go = ccp_wantoptions[f->unit];
600 if (go->mppe || go->mppc) {
650 if (go->mppc) {
658 go->mppc = 0;
660 if (go->mppe_40) {
668 go->mppe_40 = 0;
670 if (go->mppe_56) {
678 go
765 ccp_options *go = &ccp_gotoptions[f->unit]; local
785 ccp_options *go = &ccp_gotoptions[f->unit]; local
926 ccp_options *go = &ccp_gotoptions[f->unit]; local
1036 ccp_options *go = &ccp_gotoptions[f->unit]; local
1201 ccp_options *go = &ccp_gotoptions[f->unit]; local
1873 ccp_options *go = &ccp_gotoptions[f->unit]; local
[all...]

Completed in 130 milliseconds

1234567891011>>