Lines Matching refs:tmp_port
46 ocontext_t *tmp_port = NULL;
54 tmp_port = (ocontext_t *) calloc(1, sizeof(ocontext_t));
55 if (!tmp_port)
62 tmp_port->u.port.protocol = tmp_proto;
65 tmp_port->u.port.low_port = low;
66 tmp_port->u.port.high_port = high;
67 if (tmp_port->u.port.low_port > tmp_port->u.port.high_port) {
69 tmp_port->u.port.low_port, tmp_port->u.port.high_port);
77 context_cpy(&tmp_port->context[0], tmp_con);
82 *port = tmp_port;
89 if (tmp_port != NULL) {
90 context_destroy(&tmp_port->context[0]);
91 free(tmp_port);