Searched defs:arg (Results 1 - 25 of 1505) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/puff/
H A Dpufftest.c92 char *arg, *name = NULL; local
98 while (arg = *++argv, --argc)
99 if (arg[0] == '-') {
100 if (arg[1] == 'w' && arg[2] == 0)
102 else if (arg[1] == 'f' && arg[2] == 0)
104 else if (arg[1] >= '0' && arg[1] <= '9')
105 skip = (unsigned)atoi(arg
[all...]
/external/zlib/src/contrib/untgz/
H A Duntgz.c371 int matchname (int arg,int argc,char **argv,char *fname) argument
373 if (arg == argc) /* no arguments given (untgz tgzarchive) */
376 while (arg < argc)
377 if (ExprMatch(fname,argv[arg++]))
386 int tar (gzFile in,int action,int arg,int argc,char **argv) argument
480 if (matchname(arg,argc,argv,fname))
609 int arg = 1; local
634 if (strcmp(argv[arg],"-l") == 0)
637 if (argc == ++arg)
640 else if (strcmp(argv[arg],"
[all...]
/external/zopfli/src/zopfli/
H A Dzopfli_bin.c138 const char* arg = argv[i]; local
139 if (StringsEqual(arg, "-v")) options.verbose = 1;
140 else if (StringsEqual(arg, "-c")) output_to_stdout = 1;
141 else if (StringsEqual(arg, "--deflate")) {
144 else if (StringsEqual(arg, "--zlib")) output_type = ZOPFLI_FORMAT_ZLIB;
145 else if (StringsEqual(arg, "--gzip")) output_type = ZOPFLI_FORMAT_GZIP;
146 else if (StringsEqual(arg, "--splitlast")) options.blocksplittinglast = 1;
147 else if (arg[0] == '-' && arg[1] == '-' && arg[
[all...]
/external/zopfli/src/zopflipng/
H A Dzopflipng_bin.cc156 std::string arg = argv[i]; local
157 if (arg[0] == '-' && arg.size() > 1 && arg[1] != '-') {
158 for (size_t pos = 1; pos < arg.size(); pos++) {
159 char c = arg[pos];
178 } else if (arg[0] == '-' && arg.size() > 1 && arg[1] == '-') {
179 size_t eq = arg
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dentropy_coding.c79 static WebRtc_Word16 CalcLogN(WebRtc_Word32 arg) { argument
82 zeros=WebRtcSpl_NormU32(arg);
83 frac=(WebRtc_Word16)WEBRTC_SPL_RSHIFT_U32(WEBRTC_SPL_LSHIFT_W32(arg, zeros)&0x7FFFFFFF, 23);
/external/wpa_supplicant_8/hostapd/
H A Dhostapd_cli.c241 char *arg; local
246 arg = os_malloc(len);
247 if (arg == NULL)
249 os_snprintf(arg, len, "%s %s", arg1, arg2);
250 res = os_exec(program, arg, 1);
251 os_free(arg);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dvlan_init.c208 unsigned long arg[2]; local
217 arg[0] = BRCTL_DEL_BRIDGE;
218 arg[1] = (unsigned long) br_name;
220 if (ioctl(fd, SIOCGIFBR, arg) < 0 && errno != ENXIO) {
243 unsigned long arg[4]; local
253 arg[0] = BRCTL_ADD_BRIDGE;
254 arg[1] = (unsigned long) br_name;
256 if (ioctl(fd, SIOCGIFBR, arg) < 0) {
273 arg[0] = BRCTL_SET_BRIDGE_FORWARD_DELAY;
274 arg[
295 unsigned long arg[4]; local
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls_nss.c217 static char * nss_password_cb(PK11SlotInfo *slot, PRBool retry, void *arg) argument
286 static SECStatus nss_bad_cert_cb(void *arg, PRFileDesc *fd) argument
288 struct tls_connection *conn = arg;
H A Dtls_openssl.c1002 const void *buf, size_t len, SSL *ssl, void *arg)
1004 struct tls_connection *conn = arg;
3020 static int ocsp_resp_cb(SSL *s, void *arg) argument
3022 struct tls_connection *conn = arg;
3164 static int ocsp_status_cb(SSL *s, void *arg) argument
3406 const SSL_CIPHER **cipher, void *arg)
3410 SSL_CIPHER **cipher, void *arg)
3413 struct tls_connection *conn = arg;
3437 int len, void *arg)
3439 struct tls_connection *conn = arg;
1001 tls_msg_cb(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) argument
3404 tls_sess_sec_cb(SSL *s, void *secret, int *secret_len, STACK_OF(SSL_CIPHER) *peer_ciphers, const SSL_CIPHER **cipher, void *arg) argument
3436 tls_session_ticket_ext_cb(SSL *s, const unsigned char *data, int len, void *arg) argument
3463 tls_hello_ext_cb(SSL *s, int client_server, int type, unsigned char *data, int len, void *arg) argument
3489 tls_hello_ext_cb(SSL *s, TLS_EXTENSION *ext, void *arg) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_atheros.c217 set80211param(struct atheros_driver_data *drv, int op, int arg) argument
224 memcpy(iwr.u.name+sizeof(__u32), &arg, sizeof(arg));
229 "(%s) arg %d)", __func__, drv->iface, op,
230 athr_get_param_name(op), arg);
H A Ddriver_bsd.c72 bsd_set80211(void *priv, int op, int val, const void *arg, int arg_len) argument
81 ireq.i_data = (void *) arg;
94 bsd_get80211(void *priv, struct ieee80211req *ireq, int op, void *arg, argument
103 ireq->i_data = arg;
114 get80211var(struct bsd_driver_data *drv, int op, void *arg, int arg_len) argument
118 if (bsd_get80211(drv, &ireq, op, arg, arg_len) < 0)
124 set80211var(struct bsd_driver_data *drv, int op, const void *arg, int arg_len) argument
126 return bsd_set80211(drv, op, 0, arg, arg_len);
130 set80211param(struct bsd_driver_data *drv, int op, int arg) argument
132 return bsd_set80211(drv, op, arg, NUL
[all...]
H A Ddriver_madwifi.c195 set80211param(struct madwifi_driver_data *drv, int op, int arg) argument
202 memcpy(iwr.u.name+sizeof(__u32), &arg, sizeof(arg));
207 "arg %d)", __func__, op, arg);
H A Ddriver_nl80211.c623 static int bss_info_handler(struct nl_msg *msg, void *arg);
627 static int ack_handler(struct nl_msg *msg, void *arg) argument
629 int *err = arg;
634 static int finish_handler(struct nl_msg *msg, void *arg) argument
636 int *ret = arg;
642 void *arg)
644 int *ret = arg;
650 static int no_seq_check(struct nl_msg *msg, void *arg) argument
736 static int family_handler(struct nl_msg *msg, void *arg) argument
738 struct family_data *res = arg;
641 error_handler(struct sockaddr_nl *nla, struct nlmsgerr *err, void *arg) argument
807 netdev_info_handler(struct nl_msg *msg, void *arg) argument
949 process_beacon_event(struct nl_msg *msg, void *arg) argument
1499 struct nl80211_bss_info_arg arg; local
2321 get_link_signal(struct nl_msg *msg, void *arg) argument
2399 get_link_noise(struct nl_msg *msg, void *arg) argument
2466 get_noise_for_scan_results(struct nl_msg *msg, void *arg) argument
3270 process_drv_event(struct nl_msg *msg, void *arg) argument
3310 process_global_event(struct nl_msg *msg, void *arg) argument
3348 process_bss_event(struct nl_msg *msg, void *arg) argument
3438 nl80211_get_country(struct nl_msg *msg, void *arg) argument
3476 protocol_feature_handler(struct nl_msg *msg, void *arg) argument
3860 wiphy_info_handler(struct nl_msg *msg, void *arg) argument
5458 bss_info_handler(struct nl_msg *msg, void *arg) argument
5706 struct nl80211_bss_info_arg arg; local
6677 phy_info_handler(struct nl_msg *msg, void *arg) argument
6955 nl80211_get_reg(struct nl_msg *msg, void *arg) argument
7944 nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv, const char *ifname, enum nl80211_iftype iftype, const u8 *addr, int wds, int (*handler)(struct nl_msg *, void *), void *arg) argument
8030 nl80211_create_iface(struct wpa_driver_nl80211_data *drv, const char *ifname, enum nl80211_iftype iftype, const u8 *addr, int wds, int (*handler)(struct nl_msg *, void *), void *arg, int use_existing) argument
9351 dfs_info_handler(struct nl_msg *msg, void *arg) argument
9521 get_key_handler(struct nl_msg *msg, void *arg) argument
9668 get_sta_handler(struct nl_msg *msg, void *arg) argument
10291 nl80211_wdev_handler(struct nl_msg *msg, void *arg) argument
10539 cookie_handler(struct nl_msg *msg, void *arg) argument
11012 get_channel_width(struct nl_msg *msg, void *arg) argument
11386 survey_handler(struct nl_msg *msg, void *arg) argument
12339 cmd_reply_handler(struct nl_msg *msg, void *arg) argument
12360 vendor_reply_handler(struct nl_msg *msg, void *arg) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/l2_packet/
H A Dl2_packet_ndis.c196 static DWORD WINAPI l2_packet_rx_thread(LPVOID arg) argument
198 struct l2_packet_data *l2 = arg;
H A Dl2_packet_winpcap.c128 static DWORD WINAPI l2_packet_receive_thread(LPVOID arg) argument
130 struct l2_packet_data *l2 = arg;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dhttp_curl.c1033 static int ocsp_resp_cb(SSL *s, void *arg) argument
1035 struct http_ctx *ctx = arg;
H A Dos_unix.c560 int os_exec(const char *program, const char *arg, int wait_completion) argument
579 _arg = os_strdup(arg);
H A Dos_win32.c263 int os_exec(const char *program, const char *arg, int wait_completion) argument
/external/wpa_supplicant_8/src/ap/
H A Dvlan_init.c208 unsigned long arg[2]; local
217 arg[0] = BRCTL_DEL_BRIDGE;
218 arg[1] = (unsigned long) br_name;
220 if (ioctl(fd, SIOCGIFBR, arg) < 0 && errno != ENXIO) {
243 unsigned long arg[4]; local
253 arg[0] = BRCTL_ADD_BRIDGE;
254 arg[1] = (unsigned long) br_name;
256 if (ioctl(fd, SIOCGIFBR, arg) < 0) {
273 arg[0] = BRCTL_SET_BRIDGE_FORWARD_DELAY;
274 arg[
295 unsigned long arg[4]; local
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dtls_nss.c217 static char * nss_password_cb(PK11SlotInfo *slot, PRBool retry, void *arg) argument
286 static SECStatus nss_bad_cert_cb(void *arg, PRFileDesc *fd) argument
288 struct tls_connection *conn = arg;
H A Dtls_openssl.c1002 const void *buf, size_t len, SSL *ssl, void *arg)
1004 struct tls_connection *conn = arg;
3020 static int ocsp_resp_cb(SSL *s, void *arg) argument
3022 struct tls_connection *conn = arg;
3164 static int ocsp_status_cb(SSL *s, void *arg) argument
3406 const SSL_CIPHER **cipher, void *arg)
3410 SSL_CIPHER **cipher, void *arg)
3413 struct tls_connection *conn = arg;
3437 int len, void *arg)
3439 struct tls_connection *conn = arg;
1001 tls_msg_cb(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) argument
3404 tls_sess_sec_cb(SSL *s, void *secret, int *secret_len, STACK_OF(SSL_CIPHER) *peer_ciphers, const SSL_CIPHER **cipher, void *arg) argument
3436 tls_session_ticket_ext_cb(SSL *s, const unsigned char *data, int len, void *arg) argument
3463 tls_hello_ext_cb(SSL *s, int client_server, int type, unsigned char *data, int len, void *arg) argument
3489 tls_hello_ext_cb(SSL *s, TLS_EXTENSION *ext, void *arg) argument
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_atheros.c217 set80211param(struct atheros_driver_data *drv, int op, int arg) argument
224 memcpy(iwr.u.name+sizeof(__u32), &arg, sizeof(arg));
229 "(%s) arg %d)", __func__, drv->iface, op,
230 athr_get_param_name(op), arg);
H A Ddriver_bsd.c72 bsd_set80211(void *priv, int op, int val, const void *arg, int arg_len) argument
81 ireq.i_data = (void *) arg;
94 bsd_get80211(void *priv, struct ieee80211req *ireq, int op, void *arg, argument
103 ireq->i_data = arg;
114 get80211var(struct bsd_driver_data *drv, int op, void *arg, int arg_len) argument
118 if (bsd_get80211(drv, &ireq, op, arg, arg_len) < 0)
124 set80211var(struct bsd_driver_data *drv, int op, const void *arg, int arg_len) argument
126 return bsd_set80211(drv, op, 0, arg, arg_len);
130 set80211param(struct bsd_driver_data *drv, int op, int arg) argument
132 return bsd_set80211(drv, op, arg, NUL
[all...]
H A Ddriver_madwifi.c195 set80211param(struct madwifi_driver_data *drv, int op, int arg) argument
202 memcpy(iwr.u.name+sizeof(__u32), &arg, sizeof(arg));
207 "arg %d)", __func__, op, arg);
H A Ddriver_nl80211.c623 static int bss_info_handler(struct nl_msg *msg, void *arg);
627 static int ack_handler(struct nl_msg *msg, void *arg) argument
629 int *err = arg;
634 static int finish_handler(struct nl_msg *msg, void *arg) argument
636 int *ret = arg;
642 void *arg)
644 int *ret = arg;
650 static int no_seq_check(struct nl_msg *msg, void *arg) argument
736 static int family_handler(struct nl_msg *msg, void *arg) argument
738 struct family_data *res = arg;
641 error_handler(struct sockaddr_nl *nla, struct nlmsgerr *err, void *arg) argument
807 netdev_info_handler(struct nl_msg *msg, void *arg) argument
949 process_beacon_event(struct nl_msg *msg, void *arg) argument
1499 struct nl80211_bss_info_arg arg; local
2321 get_link_signal(struct nl_msg *msg, void *arg) argument
2399 get_link_noise(struct nl_msg *msg, void *arg) argument
2466 get_noise_for_scan_results(struct nl_msg *msg, void *arg) argument
3270 process_drv_event(struct nl_msg *msg, void *arg) argument
3310 process_global_event(struct nl_msg *msg, void *arg) argument
3348 process_bss_event(struct nl_msg *msg, void *arg) argument
3438 nl80211_get_country(struct nl_msg *msg, void *arg) argument
3476 protocol_feature_handler(struct nl_msg *msg, void *arg) argument
3860 wiphy_info_handler(struct nl_msg *msg, void *arg) argument
5458 bss_info_handler(struct nl_msg *msg, void *arg) argument
5706 struct nl80211_bss_info_arg arg; local
6677 phy_info_handler(struct nl_msg *msg, void *arg) argument
6955 nl80211_get_reg(struct nl_msg *msg, void *arg) argument
7944 nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv, const char *ifname, enum nl80211_iftype iftype, const u8 *addr, int wds, int (*handler)(struct nl_msg *, void *), void *arg) argument
8030 nl80211_create_iface(struct wpa_driver_nl80211_data *drv, const char *ifname, enum nl80211_iftype iftype, const u8 *addr, int wds, int (*handler)(struct nl_msg *, void *), void *arg, int use_existing) argument
9351 dfs_info_handler(struct nl_msg *msg, void *arg) argument
9521 get_key_handler(struct nl_msg *msg, void *arg) argument
9668 get_sta_handler(struct nl_msg *msg, void *arg) argument
10291 nl80211_wdev_handler(struct nl_msg *msg, void *arg) argument
10539 cookie_handler(struct nl_msg *msg, void *arg) argument
11012 get_channel_width(struct nl_msg *msg, void *arg) argument
11386 survey_handler(struct nl_msg *msg, void *arg) argument
12339 cmd_reply_handler(struct nl_msg *msg, void *arg) argument
12360 vendor_reply_handler(struct nl_msg *msg, void *arg) argument
[all...]

Completed in 749 milliseconds

1234567891011>>