Searched refs:i2 (Results 1 - 25 of 451) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libiconv-1.14/tests/
H A Dgenutf8.c28 int i1, i2, i3; local
39 for (i2 = 0; i2 < 64; i2++)
40 printf("0x%02X%02X\t0x%04X\n", 0xc0+i1,0x80+i2, (i1<<6)+i2);
43 for (i2 = (i1==0 ? 32 : 0); i2 < 64; i2++)
45 printf("0x%02X%02X%02X\t0x%04X\n", 0xe0+i1,0x80+i2,
[all...]
H A Dgengb18030z.c28 int i1, i2, i3, i4, uc; local
36 for (i2 = 0x30; i2 <= 0x39; i2++)
39 printf("0x%02X%02X%02X%02X\t0x%X\n", i1, i2, i3, i4, uc);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/libiconv-1.14/tests/
H A Dgenutf8.c28 int i1, i2, i3; local
39 for (i2 = 0; i2 < 64; i2++)
40 printf("0x%02X%02X\t0x%04X\n", 0xc0+i1,0x80+i2, (i1<<6)+i2);
43 for (i2 = (i1==0 ? 32 : 0); i2 < 64; i2++)
45 printf("0x%02X%02X%02X\t0x%04X\n", 0xe0+i1,0x80+i2,
[all...]
H A Dgengb18030z.c28 int i1, i2, i3, i4, uc; local
36 for (i2 = 0x30; i2 <= 0x39; i2++)
39 printf("0x%02X%02X%02X%02X\t0x%X\n", i1, i2, i3, i4, uc);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/libiconv-1.14/tests/
H A Dgenutf8.c28 int i1, i2, i3; local
39 for (i2 = 0; i2 < 64; i2++)
40 printf("0x%02X%02X\t0x%04X\n", 0xc0+i1,0x80+i2, (i1<<6)+i2);
43 for (i2 = (i1==0 ? 32 : 0); i2 < 64; i2++)
45 printf("0x%02X%02X%02X\t0x%04X\n", 0xe0+i1,0x80+i2,
[all...]
H A Dgengb18030z.c28 int i1, i2, i3, i4, uc; local
36 for (i2 = 0x30; i2 <= 0x39; i2++)
39 printf("0x%02X%02X%02X%02X\t0x%X\n", i1, i2, i3, i4, uc);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/librpc/ndr/
H A Dndr_misc.c33 const struct ndr_syntax_id *i2)
35 return GUID_equal(&i1->uuid, &i2->uuid)
36 && (i1->if_version == i2->if_version);
32 ndr_syntax_id_equal(const struct ndr_syntax_id *i1, const struct ndr_syntax_id *i2) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/librpc/ndr/
H A Dndr_misc.c33 const struct ndr_syntax_id *i2)
35 return GUID_equal(&i1->uuid, &i2->uuid)
36 && (i1->if_version == i2->if_version);
32 ndr_syntax_id_equal(const struct ndr_syntax_id *i1, const struct ndr_syntax_id *i2) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/librpc/ndr/
H A Dndr_misc.c33 const struct ndr_syntax_id *i2)
35 return GUID_equal(&i1->uuid, &i2->uuid)
36 && (i1->if_version == i2->if_version);
32 ndr_syntax_id_equal(const struct ndr_syntax_id *i1, const struct ndr_syntax_id *i2) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source3/lib/netapi/examples/share/
H A Dshare_add.c40 struct SHARE_INFO_2 i2; local
86 i2.shi2_netname = sharename;
87 i2.shi2_type = 0;
88 i2.shi2_remark = "Test share created via NetApi";
89 i2.shi2_permissions = 0;
90 i2.shi2_max_uses = (uint32_t)-1;
91 i2.shi2_current_uses = 0;
92 i2.shi2_path = path;
93 i2.shi2_passwd = NULL;
97 (uint8_t *)&i2,
[all...]
H A Dshare_enum.c44 struct SHARE_INFO_2 *i2 = NULL; local
96 i2 = (struct SHARE_INFO_2 *)buffer;
114 printf("#%d netname: %s\n", i, i2->shi2_netname);
115 printf("#%d type: %d\n", i, i2->shi2_type);
116 printf("#%d remark: %s\n", i, i2->shi2_remark);
117 printf("#%d permissions: %d\n", i, i2->shi2_permissions);
118 printf("#%d max users: %d\n", i, i2->shi2_max_uses);
119 printf("#%d current users: %d\n", i, i2->shi2_current_uses);
120 printf("#%d path: %s\n", i, i2->shi2_path);
121 printf("#%d password: %s\n", i, i2
[all...]
H A Dshare_getinfo.c41 struct SHARE_INFO_2 *i2 = NULL; local
101 i2 = (struct SHARE_INFO_2 *)buffer;
124 printf("netname: %s\n", i2->shi2_netname);
125 printf("type: %d\n", i2->shi2_type);
126 printf("remark: %s\n", i2->shi2_remark);
127 printf("permissions: %d\n", i2->shi2_permissions);
128 printf("max users: %d\n", i2->shi2_max_uses);
129 printf("current users: %d\n", i2->shi2_current_uses);
130 printf("path: %s\n", i2->shi2_path);
131 printf("password: %s\n", i2
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source3/lib/netapi/examples/share/
H A Dshare_add.c40 struct SHARE_INFO_2 i2; local
86 i2.shi2_netname = sharename;
87 i2.shi2_type = 0;
88 i2.shi2_remark = "Test share created via NetApi";
89 i2.shi2_permissions = 0;
90 i2.shi2_max_uses = (uint32_t)-1;
91 i2.shi2_current_uses = 0;
92 i2.shi2_path = path;
93 i2.shi2_passwd = NULL;
97 (uint8_t *)&i2,
[all...]
H A Dshare_enum.c44 struct SHARE_INFO_2 *i2 = NULL; local
96 i2 = (struct SHARE_INFO_2 *)buffer;
114 printf("#%d netname: %s\n", i, i2->shi2_netname);
115 printf("#%d type: %d\n", i, i2->shi2_type);
116 printf("#%d remark: %s\n", i, i2->shi2_remark);
117 printf("#%d permissions: %d\n", i, i2->shi2_permissions);
118 printf("#%d max users: %d\n", i, i2->shi2_max_uses);
119 printf("#%d current users: %d\n", i, i2->shi2_current_uses);
120 printf("#%d path: %s\n", i, i2->shi2_path);
121 printf("#%d password: %s\n", i, i2
[all...]
H A Dshare_getinfo.c41 struct SHARE_INFO_2 *i2 = NULL; local
101 i2 = (struct SHARE_INFO_2 *)buffer;
124 printf("netname: %s\n", i2->shi2_netname);
125 printf("type: %d\n", i2->shi2_type);
126 printf("remark: %s\n", i2->shi2_remark);
127 printf("permissions: %d\n", i2->shi2_permissions);
128 printf("max users: %d\n", i2->shi2_max_uses);
129 printf("current users: %d\n", i2->shi2_current_uses);
130 printf("path: %s\n", i2->shi2_path);
131 printf("password: %s\n", i2
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source3/lib/netapi/examples/share/
H A Dshare_add.c40 struct SHARE_INFO_2 i2; local
86 i2.shi2_netname = sharename;
87 i2.shi2_type = 0;
88 i2.shi2_remark = "Test share created via NetApi";
89 i2.shi2_permissions = 0;
90 i2.shi2_max_uses = (uint32_t)-1;
91 i2.shi2_current_uses = 0;
92 i2.shi2_path = path;
93 i2.shi2_passwd = NULL;
97 (uint8_t *)&i2,
[all...]
H A Dshare_enum.c44 struct SHARE_INFO_2 *i2 = NULL; local
96 i2 = (struct SHARE_INFO_2 *)buffer;
114 printf("#%d netname: %s\n", i, i2->shi2_netname);
115 printf("#%d type: %d\n", i, i2->shi2_type);
116 printf("#%d remark: %s\n", i, i2->shi2_remark);
117 printf("#%d permissions: %d\n", i, i2->shi2_permissions);
118 printf("#%d max users: %d\n", i, i2->shi2_max_uses);
119 printf("#%d current users: %d\n", i, i2->shi2_current_uses);
120 printf("#%d path: %s\n", i, i2->shi2_path);
121 printf("#%d password: %s\n", i, i2
[all...]
H A Dshare_getinfo.c41 struct SHARE_INFO_2 *i2 = NULL; local
101 i2 = (struct SHARE_INFO_2 *)buffer;
124 printf("netname: %s\n", i2->shi2_netname);
125 printf("type: %d\n", i2->shi2_type);
126 printf("remark: %s\n", i2->shi2_remark);
127 printf("permissions: %d\n", i2->shi2_permissions);
128 printf("max users: %d\n", i2->shi2_max_uses);
129 printf("current users: %d\n", i2->shi2_current_uses);
130 printf("path: %s\n", i2->shi2_path);
131 printf("password: %s\n", i2
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source3/lib/netapi/examples/netlogon/
H A Dnetlogon_control.c39 struct NETLOGON_INFO_2 *i2 = NULL; local
105 i2 = (struct NETLOGON_INFO_2 *)buffer;
107 printf("Flags: %x\n", i2->netlog2_flags);
108 printf("Trusted DC Name %s\n", i2->netlog2_trusted_dc_name);
110 i2->netlog2_tc_connection_status,
111 i2->netlog2_tc_connection_status,
112 libnetapi_errstr(i2->netlog2_tc_connection_status));
114 i2->netlog2_pdc_connection_status,
115 i2->netlog2_pdc_connection_status,
116 libnetapi_errstr(i2
[all...]
H A Dnetlogon_control2.c39 struct NETLOGON_INFO_2 *i2 = NULL; local
109 i2 = (struct NETLOGON_INFO_2 *)buffer;
111 printf("Flags: %x\n", i2->netlog2_flags);
112 printf("Trusted DC Name %s\n", i2->netlog2_trusted_dc_name);
114 i2->netlog2_tc_connection_status,
115 i2->netlog2_tc_connection_status,
116 libnetapi_errstr(i2->netlog2_tc_connection_status));
118 i2->netlog2_pdc_connection_status,
119 i2->netlog2_pdc_connection_status,
120 libnetapi_errstr(i2
[all...]
H A Dnltest.c47 struct NETLOGON_INFO_2 *i2 = NULL; local
67 i2 = (struct NETLOGON_INFO_2 *)buffer;
69 printf("Flags: %x\n", i2->netlog2_flags);
70 printf("Trusted DC Name %s\n", i2->netlog2_trusted_dc_name);
72 i2->netlog2_tc_connection_status,
73 i2->netlog2_tc_connection_status,
74 libnetapi_errstr(i2->netlog2_tc_connection_status));
76 i2->netlog2_pdc_connection_status,
77 i2->netlog2_pdc_connection_status,
78 libnetapi_errstr(i2
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source3/lib/netapi/examples/netlogon/
H A Dnetlogon_control.c39 struct NETLOGON_INFO_2 *i2 = NULL; local
105 i2 = (struct NETLOGON_INFO_2 *)buffer;
107 printf("Flags: %x\n", i2->netlog2_flags);
108 printf("Trusted DC Name %s\n", i2->netlog2_trusted_dc_name);
110 i2->netlog2_tc_connection_status,
111 i2->netlog2_tc_connection_status,
112 libnetapi_errstr(i2->netlog2_tc_connection_status));
114 i2->netlog2_pdc_connection_status,
115 i2->netlog2_pdc_connection_status,
116 libnetapi_errstr(i2
[all...]
H A Dnetlogon_control2.c39 struct NETLOGON_INFO_2 *i2 = NULL; local
109 i2 = (struct NETLOGON_INFO_2 *)buffer;
111 printf("Flags: %x\n", i2->netlog2_flags);
112 printf("Trusted DC Name %s\n", i2->netlog2_trusted_dc_name);
114 i2->netlog2_tc_connection_status,
115 i2->netlog2_tc_connection_status,
116 libnetapi_errstr(i2->netlog2_tc_connection_status));
118 i2->netlog2_pdc_connection_status,
119 i2->netlog2_pdc_connection_status,
120 libnetapi_errstr(i2
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source3/lib/netapi/examples/netlogon/
H A Dnetlogon_control.c39 struct NETLOGON_INFO_2 *i2 = NULL; local
105 i2 = (struct NETLOGON_INFO_2 *)buffer;
107 printf("Flags: %x\n", i2->netlog2_flags);
108 printf("Trusted DC Name %s\n", i2->netlog2_trusted_dc_name);
110 i2->netlog2_tc_connection_status,
111 i2->netlog2_tc_connection_status,
112 libnetapi_errstr(i2->netlog2_tc_connection_status));
114 i2->netlog2_pdc_connection_status,
115 i2->netlog2_pdc_connection_status,
116 libnetapi_errstr(i2
[all...]
H A Dnetlogon_control2.c39 struct NETLOGON_INFO_2 *i2 = NULL; local
109 i2 = (struct NETLOGON_INFO_2 *)buffer;
111 printf("Flags: %x\n", i2->netlog2_flags);
112 printf("Trusted DC Name %s\n", i2->netlog2_trusted_dc_name);
114 i2->netlog2_tc_connection_status,
115 i2->netlog2_tc_connection_status,
116 libnetapi_errstr(i2->netlog2_tc_connection_status));
118 i2->netlog2_pdc_connection_status,
119 i2->netlog2_pdc_connection_status,
120 libnetapi_errstr(i2
[all...]

Completed in 110 milliseconds

1234567891011>>