HomeSort by: relevance | last modified time | path
    Searched refs:con (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/sys/net/npf/
npf_conn.c 46 * - npf_conn_getforwkey(con) -- for the forwards stream;
47 * - npf_conn_getbackkey(con, alen) -- for the backwards stream.
275 conn_update_atime(npf_conn_t *con)
280 atomic_store_relaxed(&con->c_atime, tsnow.tv_sec);
295 npf_conn_check(const npf_conn_t *con, const nbuf_t *nbuf,
298 const uint32_t flags = atomic_load_relaxed(&con->c_flags);
299 const unsigned ifid = atomic_load_relaxed(&con->c_ifid);
330 npf_conn_t *con; local in function:npf_conn_lookup
337 con = npf_conndb_lookup(npf, &key, flow);
338 if (con == NULL)
364 npf_conn_t *con; local in function:npf_conn_inspect
432 npf_conn_t *con; local in function:npf_conn_establish
775 npf_conn_t *head, *con; local in function:npf_conndb_export
858 npf_conn_t *con; local in function:npf_conn_import
945 npf_conn_t *con; local in function:npf_conn_find
    [all...]
npf_conndb.c 168 npf_conn_t *con; local in function:npf_conndb_lookup
186 con = CONNDB_GET_PTR(val);
187 KASSERT(con != NULL);
192 atomic_inc_uint(&con->c_refcnt);
194 return con;
204 npf_conn_t *con, npf_flow_t flow)
214 KASSERT(!CONNDB_ISFORW_P(con));
215 val = (void *)((uintptr_t)(void *)con | tag);
246 npf_conndb_enqueue(npf_conndb_t *cd, npf_conn_t *con)
252 atomic_store_relaxed(&con->c_next, head)
264 npf_conn_t *con; local in function:npf_conndb_update
307 npf_conn_t *con; local in function:npf_conndb_gc_incr
393 npf_conn_t *con; local in function:npf_conndb_gc
    [all...]
npf_handler.c 148 npf_conn_t *con; local in function:npfk_packet_handler
174 con = NULL;
204 con = npf_conn_inspect(&npc, di, &error);
207 if (con && npf_conn_pass(con, &mi, &rp)) {
265 if ((mi.mi_retfl & NPF_RULE_STATEFUL) != 0 && !con) {
266 con = npf_conn_establish(&npc, di,
268 if (con) {
274 npf_conn_setpass(con, &mi, rp);
285 error = npf_do_nat(&npc, con, di)
    [all...]
npf_nat.c 310 npf_conn_t *con = nt->nt_conn; local in function:npf_natpolicy_destroy
311 KASSERT(con != NULL);
312 npf_conn_expire(con);
477 npf_nat_create(npf_cache_t *npc, npf_natpolicy_t *np, npf_conn_t *con)
496 nt->nt_conn = con;
648 npf_nat_share_policy(npf_cache_t *npc, npf_conn_t *con, npf_nat_t *src_nt)
655 nt = npf_nat_create(npc, np, con);
662 ret = npf_conn_setnat(npc, con, nt, np->n_type);
665 npf_nat_destroy(con, nt);
678 npf_nat_lookup(const npf_cache_t *npc, npf_conn_t *con,
    [all...]
npf_alg.c 298 npf_conn_t *con = NULL; local in function:npf_alg_conn
309 if (inspect_func && (con = inspect_func(npc, di)) != NULL) {
314 return con;
321 npf_alg_destroy(npf_t *npf, npf_alg_t *alg, npf_nat_t *nat, npf_conn_t *con)
328 destroy_func(npf, nat, con);
  /src/tests/usr.bin/xlint/lint1/
msg_169.c 13 unsigned con, okl, okr; local in function:confusing_shift_arith
16 con = a + b << c;
21 con = a << b + c;
26 con = a - b >> c;
31 con = a >> b - c;
37 con = (a) + b << c;
39 con = a + (b) << c;
41 con = a + b << (c);
45 con = ch + b << c;
47 con = a + ch << c
55 bool con, okl, okr, okb, eql; local in function:confusing_logical
84 bool con, okl, okr, eql; local in function:confusing_bitwise
141 unsigned con; local in function:constant_expressions
153 unsigned con; local in function:cast_expressions
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_ras.c 433 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_create_obj
436 if (!con)
442 obj = &con->objs[head->block];
449 list_add(&obj->node, &con->head);
459 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_find_obj
463 if (!con)
470 obj = &con->objs[head->block];
478 obj = &con->objs[i];
494 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_is_feature_allowed
496 return con->hw_supported & BIT(head->block)
502 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_is_feature_enabled
514 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:__amdgpu_ras_feature_enable
552 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_feature_enable
600 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_feature_enable_on_boot
642 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_disable_all_features
664 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_enable_all_features
831 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_query_error_count
909 struct amdgpu_ras *con = local in function:amdgpu_ras_sysfs_badpages_read
940 struct amdgpu_ras *con = local in function:amdgpu_ras_sysfs_features_read
948 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_sysfs_create_feature_node
989 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_sysfs_remove_feature_node
1070 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_sysfs_remove_all
1106 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_debugfs_create_ctrl_node
1133 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_debugfs_create
1169 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_debugfs_remove_all
1340 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_interrupt_remove_all
1362 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_badpages_read
1451 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_add_bad_pages
1485 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_save_bad_pages
1550 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_check_bad_page
1578 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_reserve_bad_pages
1621 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_release_bad_pages
1649 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_recovery_init
1700 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_recovery_fini
1764 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_init
1898 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_resume
1941 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_suspend
1955 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_pre_fini
1968 struct amdgpu_ras *con = amdgpu_ras_get_context(adev); local in function:amdgpu_ras_fini
    [all...]
  /src/sys/arch/arm/rockchip/
rk_i2c.c 193 uint32_t con; local in function:rk_i2c_start
197 con = RD4(sc, RKI2C_CON);
198 con |= RKI2C_CON_START;
199 WR4(sc, RKI2C_CON, con);
204 con &= ~RKI2C_CON_START;
205 WR4(sc, RKI2C_CON, con);
213 uint32_t con; local in function:rk_i2c_stop
217 con = RD4(sc, RKI2C_CON);
218 con |= RKI2C_CON_STOP;
219 WR4(sc, RKI2C_CON, con);
238 uint32_t con; local in function:rk_i2c_write
278 uint32_t con, mrxaddr, mrxraddr; local in function:rk_i2c_read
    [all...]
  /src/lib/libc/stdio/
fparseln.c 102 char esc, con, nl, com; local in function:fparseln
114 con = str[1];
149 if (s && con) { /* Check and eliminate continuations */
152 if (*cp == con && !isescaped(ptr, cp, esc)) {
195 if (cp[1] == con)
199 if (cp[1] != com && cp[1] != con && cp[1] != esc)
  /src/sys/arch/x68k/include/
opmreg.h 59 u_int8_t con; /* connection */ member in struct:opm_voice
  /src/usr.sbin/npf/npftest/libnpftest/
npf_gc_test.c 53 npf_conn_t *con; local in function:enqueue_connection
55 con = npf_conn_establish(npc, PFIL_IN, true);
56 CHECK_TRUE(con != NULL);
58 npf_conn_expire(con);
60 npf_conn_release(con);
  /src/usr.sbin/sysinst/arch/playstation2/
msg.md.es 58 {Este disco coincide con el siguiente disco de BIOS:
71 {Este disco coincide con los siguientes discos de BIOS:
  /src/sys/dev/ieee1394/
fwphyreg.h 120 con:1, member in struct:phyreg_page0
147 con:1,
  /src/usr.sbin/sysinst/
msg.pm.es 37 message fillzeros {Llenar con ceros}
41 message raid4 {4 - Striping con paridad almacenada en el �ltimo componente. component.}
42 message raid5 {5 - Striping con paridad en los componentes de todos. components.}
58 message pmgptdisk {Disco con GPT}
68 1) Crear particiones con el tipo necesario;
  /src/sys/dev/fdt/
hdmi_connector.c 73 bool con; local in function:dispcon_hdmi_connector_detect
85 con = fdtbus_gpio_read(hdmi_connector->hpd);
86 if (con) {
  /src/usr.sbin/sysinst/arch/mac68k/
msg.md.es 55 formateador de disco cuando prepara el disco para usar con el
59 preliminar de particiones con cualquier formateador de disco.
67 con un formateador compatible con MacOS.
72 {Sysinst intentar� inicializar su disco con un nuevo Mapa de Particiones
79 volumen no ser� iniciable por MacOS. Si escoge proceder con la
139 * Abandonar y esperar partir esta particion, con el Mapa de Particiones
144 �USAR CON CUIDADO!
150 seleccionada. Este deberia ser un nombre unico, empezando con una "/",
168 {La nueva etiqueta del disco no concuerda con la actual in-core
    [all...]
  /src/sys/arch/arm/ti/
ti_iic.c 457 uint16_t con, stat, mask; local in function:ti_iic_op
477 con = I2C_CON_EN;
478 con |= I2C_CON_MST;
479 con |= I2C_CON_STT;
481 con |= I2C_CON_STP;
483 con |= I2C_CON_XSA;
485 con |= I2C_CON_TRX;
495 DPRINTF(("ti_iic_op: op %d con 0x%x ", op, con));
512 I2C_WRITE_REG(sc, I2C_CON, con);
    [all...]
ti_sdhc.c 413 uint32_t con; local in function:ti_sdhc_rod
415 con = bus_space_read_4(hmsc->sc_bst, hmsc->sc_bsh, MMCHS_CON);
417 con |= CON_OD;
419 con &= ~CON_OD;
420 bus_space_write_4(hmsc->sc_bst, hmsc->sc_bsh, MMCHS_CON, con);
445 uint32_t con, hctl; local in function:ti_sdhc_bus_width
447 con = bus_space_read_4(hmsc->sc_bst, hmsc->sc_bsh, MMCHS_CON);
450 con |= CON_DW8;
452 con &= ~CON_DW8;
455 con &= ~CON_DW8
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_connector.h 134 struct drm_connector *con)
136 return container_of(con, struct nouveau_connector, base);
  /src/sys/arch/evbarm/stand/boot2440/
main.c 614 uint32_t con; local in function:iomux
617 con = v = 0;
636 con = (con << sft) | v;
638 CSR_WRITE(S3C2440_GPIO_BASE + 0x10 * (grp - 'A'), con);
  /src/usr.sbin/sysinst/arch/i386/
msg.md.es 80 {Este disco coincide con el siguiente disco de BIOS:
100 {Este disco coincide con los siguientes discos de BIOS:
115 con un disco conocido por BIOS, los valores anteriores son probablemente
  /src/sys/arch/x68k/dev/
opm.c 187 (voice->con & 0x7));
217 switch (opm0->sc_vdata[channel].con) {
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_kms.c 2031 struct drm_connector *con; local in function:vmw_du_update_layout
2053 drm_for_each_connector_iter(con, &conn_iter) {
2054 du = vmw_connector_to_du(con);
2071 list_for_each_entry(con, &dev->mode_config.connector_list, head) {
2072 du = vmw_connector_to_du(con);
2075 (&con->base, dev->mode_config.suggested_x_property,
2078 (&con->base, dev->mode_config.suggested_y_property,
2082 (&con->base, dev->mode_config.suggested_x_property,
2085 (&con->base, dev->mode_config.suggested_y_property,
2088 con->status = vmw_du_connector_detect(con, true)
2659 struct drm_connector *con; local in function:vmw_kms_fbdev_init_data
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
exynos3250-artik5.dtsi 363 samsung,pin-con-pdn = <EXYNOS_PIN_PDN_PREV>;
384 samsung,pin-con-pdn = <EXYNOS_PIN_PDN_INPUT>;
392 samsung,pin-con-pdn = <EXYNOS_PIN_PDN_OUT0>;
exynos4210-i9100.dts 677 samsung,pin-con-pdn = <EXYNOS_PIN_PDN_INPUT>;
683 samsung,pin-con-pdn = <EXYNOS_PIN_PDN_OUT0>;
689 samsung,pin-con-pdn = <EXYNOS_PIN_PDN_INPUT>;
695 samsung,pin-con-pdn = <EXYNOS_PIN_PDN_OUT1>;

Completed in 1760 milliseconds

1 2