Home
last modified time | relevance | path

Searched refs:common (Results 1 - 25 of 96) sorted by relevance

1234

/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/src/
H A Dfillp_stack_app_config.c85 resource->common.maxServerAllowSendCache = globalConfig->common.maxServerAllowSendCache; in CopyGlobalConfig()
86 resource->common.maxServerAllowRecvCache = globalConfig->common.maxServerAllowRecvCache; in CopyGlobalConfig()
89 resource->common.connectTimeout = globalConfig->timers.connectTimeout; in CopyGlobalConfig()
90 resource->common.keepAliveTime = globalConfig->timers.keepAliveTime; in CopyGlobalConfig()
91 resource->common.udpSendBufSize = globalConfig->common.udpSendBufSize; in CopyGlobalConfig()
92 resource->common.recvBufSize = globalConfig->common in CopyGlobalConfig()
[all...]
H A Dfillp_stack_app_config_in.c75 if ((globalResource->common.maxServerAllowSendCache == 0) || in FtAppValidateCommParams()
76 (globalResource->common.maxServerAllowSendCache > FILLP_MAX_SERVER_ALLOW_SEND_RECV_CACHE)) { in FtAppValidateCommParams()
78 globalResource->common.maxServerAllowSendCache); in FtAppValidateCommParams()
82 if ((globalResource->common.maxServerAllowRecvCache == 0) || in FtAppValidateCommParams()
83 (globalResource->common.maxServerAllowRecvCache > FILLP_MAX_SERVER_ALLOW_SEND_RECV_CACHE)) { in FtAppValidateCommParams()
85 globalResource->common.maxServerAllowRecvCache); in FtAppValidateCommParams()
91 if (globalResource->common.udpSendBufSize < FILLP_FRAME_MTU) { in FtAppValidateCommParams()
92 FILLP_LOGERR("send_bufSize %u is invalid parameter!!!", globalResource->common.udpSendBufSize); in FtAppValidateCommParams()
96 if (globalResource->common.recvBufSize < FILLP_FRAME_MTU) { in FtAppValidateCommParams()
97 FILLP_LOGERR("recvBufSize %u is invalid parameter!!!", globalResource->common in FtAppValidateCommParams()
[all...]
H A Dapi.c624 " of FillP STACK (socket index 0xFFFF will display config common to all sockets)", in FillpDebugCmdHelp()
648 FILLP_SHOWDATABUTT("FillP max socket number is (FT_CONF_MAX_SOCK_NUM) = %u", g_resource.common.maxSockNum); in FillpDebugCmdGlobalConfigRes()
651 g_resource.common.maxConnNum); in FillpDebugCmdGlobalConfigRes()
653 FILLP_SHOWDATABUTT("FillP max Instance number is = %u", g_resource.common.maxInstNum); in FillpDebugCmdGlobalConfigRes()
657 g_resource.common.recvCachePktNumBufferSize); in FillpDebugCmdGlobalConfigRes()
660 g_resource.common.fullCpuEnable); in FillpDebugCmdGlobalConfigRes()
663 g_resource.common.outOfOrderCacheEnable); in FillpDebugCmdGlobalConfigRes()
694 g_resource.common.recvCachePktNumBufferTimeout); in FillpDebugCmdGlobalConfigRes()
749 FILLP_SHOWDATABUTT("FillP keep alive timeout is (FT_CONF_TIMER_KEEP_ALIVE) = %u", resource->common.keepAliveTime); in FillpDebugSocketConfigRes()
752 resource->common in FillpDebugSocketConfigRes()
[all...]
H A Dfillp_dfx.c396 FILLP_DUMP_MSG_ADD_CHECK(data, *len, " -s <fd> show socket <fd> common config and flow config"CRLF); in DoShowHelp()
451 FILLP_CONST struct GlobalAppCommon *common = &resource->common; in DoShowSockConfigRes() local
455 FILLP_DUMP_MSG_ADD_CHECK(data, *len, "Keep alive timeout: %u"CRLF, common->keepAliveTime); in DoShowSockConfigRes()
456 FILLP_DUMP_MSG_ADD_CHECK(data, *len, "Max server allow send cache: %u"CRLF, common->maxServerAllowSendCache); in DoShowSockConfigRes()
457 FILLP_DUMP_MSG_ADD_CHECK(data, *len, "Max server allow receive cache: %u"CRLF, common->maxServerAllowRecvCache); in DoShowSockConfigRes()
458 FILLP_DUMP_MSG_ADD_CHECK(data, *len, "Max send cache: %u"CRLF, common->sendCache); in DoShowSockConfigRes()
459 FILLP_DUMP_MSG_ADD_CHECK(data, *len, "Max receive cache: %u"CRLF, common->recvCache); in DoShowSockConfigRes()
460 FILLP_DUMP_MSG_ADD_CHECK(data, *len, "Max send buffer size: %u"CRLF, common->udpSendBufSize); in DoShowSockConfigRes()
461 FILLP_DUMP_MSG_ADD_CHECK(data, *len, "Enable nack delay flag: %hhu"CRLF, common in DoShowSockConfigRes()
[all...]
H A Dsocket_opt.c226 sock->resConf.common.recvCache = FILLP_DEFAULT_MSG_RECV_CACHE; in SockSetFcAlg()
227 sock->resConf.common.sendCache = FILLP_DEFAULT_MSG_SEND_CACHE; in SockSetFcAlg()
228 NetconnSetRecvCacheSize(sock->netconn, sock->resConf.common.recvCache); in SockSetFcAlg()
229 NetconnSetSendCacheSize(sock->netconn, sock->resConf.common.sendCache); in SockSetFcAlg()
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/
H A Dstream_packet_header.h277 uint32_t common = 0; in Packetize() local
278 common |= commonHeader_.version << VERSION_OFFSET; in Packetize()
279 common |= commonHeader_.subVersion << SUB_VERSION_OFFSET; in Packetize()
280 common |= commonHeader_.extFlag << EXT_FLAG_OFFSET; in Packetize()
281 common |= commonHeader_.streamType << STREAM_TYPE_OFFSET; in Packetize()
282 common |= commonHeader_.marker << MAKER_OFFSET; in Packetize()
283 common |= commonHeader_.flag << FLAG_OFFSET; in Packetize()
284 common |= commonHeader_.level << LEVEL_OFFSET; in Packetize()
285 common |= static_cast<uint16_t>(commonHeader_.streamId << SEQ_NUM_OFFSET); in Packetize()
287 *start++ = htonl(common); in Packetize()
299 uint32_t common = ntohl(*start++); Depacketize() local
[all...]
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/
H A Dfillp_stack_config.c93 g_resource.common.maxSockNum = globalResource->common.maxSockNum; in FtInitConfigSet()
94 g_resource.common.maxConnNum = globalResource->common.maxConnectionNum; in FtInitConfigSet()
95 g_resource.common.fullCpuEnable = globalResource->common.fullCpu; in FtInitConfigSet()
96 g_resource.common.recvCachePktNumBufferSize = globalResource->common.recvCachePktNumBufferSize; in FtInitConfigSet()
97 g_resource.common.outOfOrderCacheEnable = globalResource->common in FtInitConfigSet()
[all...]
H A Dres.c26 Access: Used to maintain global udp resources, common resources and floe control resources
37 FILLP_DEFAULT_RECV_CACHE_PKT_NUM_BUFFER_SIZE, /* common.recvCachePktNumBufferSize */
38 FILLP_DEFAULT_RECV_CACHE_PKT_NUM_BUFFER_TIMEOUT, /* common.recvCachePktNumBufferTimeout */
39 FILLP_DEFAULT_MAX_SOCK_NUM, /* common.maxSockNum */
40 FILLP_DEFAULT_MAX_CONNECTION_NUM, /* common.maxConnNum */
41 FILLP_DEFAULT_INST_NUM, /* common.maxInstNum */
42 FILLP_DEFAULT_BFULL_CPU, /* common.fullCpuEnable */
43 FILLP_DEFAULT_BOUT_OF_ORDER_CACHE_FEATURE, /* common.outOfOrderCacheEnable */
44 FILLP_DEFAULT_CPU_CORE_USE, /* common.cpuCoreUse */
45 0, /* common
[all...]
H A Dfillp_stack_config_in.c61 g_resource.common.recvCachePktNumBufferSize = configValue; in FtConfigSetRecvCachePktNumBufferSize()
75 g_resource.common.outOfOrderCacheEnable = val; in FtConfigSetOutOfOrderCacheFeature()
88 g_resource.common.cpuCoreUse = val; in FtConfigSetCpuCoreUse()
109 g_resource.common.maxSockNum = configValue; in FtConfigSetMaxSockNum()
132 g_resource.common.maxConnNum = configValue; in FtConfigSetMaxConnectionNum()
145 g_resource.common.fullCpuEnable = val; in FtConfigSetFullCpu()
309 g_resource.common.sendCache = configValue; in FtConfigSetSendCache()
322 g_resource.common.recvCache = configValue; in FtConfigSetRecvCache()
363 if ((resource->common.maxSockNum == 0) || in FtValidateCommonConfigParamsInner()
364 (resource->common in FtValidateCommonConfigParamsInner()
[all...]
H A Dnet.c254 if (g_resource.common.outOfOrderCacheEnable && in FillpNetconnSetState()
255 (g_appResource.common.enableNackDelay == FILLP_FALSE)) { in FillpNetconnSetState()
257 (FILLP_UINT32)(g_resource.common.recvCachePktNumBufferTimeout * FILLP_ONE_SECOND); in FillpNetconnSetState()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dsocket_common.c96 FILLP_DEFAULT_APP_KEEP_ALIVE_TIME, /* common.keepAliveTime */
97 FILLP_DEFAULT_APP_MAX_SERVER_ALLOW_RECV_CACHE, /* common.maxServerAllowRecvCache */
98 FILLP_DEFAULT_APP_MAX_SERVER_ALLOW_SEND_CACHE, /* common.maxServerAllowSendCache */
99 FILLP_DEFAULT_UDP_SEND_BUFSIZE, /* common.udpSendBufSize */
100 FILLP_DEFAULT_UDP_RECV_BUFSIZE, /* common.recvBufSize */
101 FILLP_DEFAULT_DISCONNECT_TIMER_INTERVAL, /* common.disconnectRetrytimeout */
102 FILLP_DEFAULT_APP_SEND_CACHE, /* common.sendCache */
103 FILLP_DEFAULT_APP_RECV_CACHE, /* common.recvCache */
104 FILLP_DEFAULT_APP_CONNECT_TIMEOUT, /* common.connectTimeout */
105 0, /* common
[all...]
H A Dspunge_message.c89 NetconnSetRecvCacheSize(conn, sock->resConf.common.recvCache); in SpungeHandleMsgAllocSock()
90 NetconnSetSendCacheSize(conn, sock->resConf.common.sendCache); in SpungeHandleMsgAllocSock()
94 sock->resConf.common.sendCache, sock->resConf.common.recvCache, sock->resConf.flowControl.pktSize, in SpungeHandleMsgAllocSock()
301 fpcb->connRetryTimeoutTimerNode.interval = (FILLP_UINT32)FILLP_UTILS_MS2US(sock->resConf.common.connRetryTimeout); in SpungeStartConnRetryTimer()
330 NetconnSetConnectTimeout(sock->netconn, FILLP_UTILS_MS2US((FILLP_LLONG)sock->resConf.common.connectTimeout)); in SpungeHandleMsgConnect()
718 ret = SysArchSetSockSndbuf(sysosSocket, sock->resConf.common.udpSendBufSize); in SpungeHandleMsgSetSendBuf()
753 ret = SysArchSetSockRcvbuf(sysosSocket, sock->resConf.common.recvBufSize); in SpungeHandleMsgSetRecvBuf()
790 ((struct FtSocket *)(((struct FtNetconn *)pcb->conn)->sock))->resConf.common.nackDelayTimeout = in SpungeHandleMsgSetNackDelay()
834 pcb->keepAliveTimerNode.interval = FILLP_UTILS_MS2US(sock->resConf.common in SpungeHandleMsgSetKeepAlive()
[all...]
/foundation/communication/dhcp/services/dhcp_server/src/
H A Ddhcp_config.cpp77 static int SetNetConfigInfo(DhcpConfig *dhcpConfig, const char *pKey, const char *pValue, int common) in SetNetConfigInfo() argument
90 if (((strcmp(pKey, "serverId") == 0) && common) || ((strcmp(pKey, "server") == 0) && !common)) { in SetNetConfigInfo()
182 static int SetDhcpConfig(DhcpConfig *dhcpConfig, const char *strLine, int common) in SetDhcpConfig() argument
202 } else if ((((strcmp(pTok, "serverId") == 0) && common) || ((strcmp(pTok, "server") == 0) && !common)) || in SetDhcpConfig()
204 return SetNetConfigInfo(dhcpConfig, pTok, pSave, common); in SetDhcpConfig()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_api_impl_bridge.cpp425 auto common = panda::ObjectRef::New(vm); in GetArkUINativeModule() local
426 common->Set(vm, panda::StringRef::NewFromUtf8(vm, "setBackgroundColor"), in GetArkUINativeModule()
428 common->Set(vm, panda::StringRef::NewFromUtf8(vm, "resetBackgroundColor"), in GetArkUINativeModule()
430 common->Set(vm, panda::StringRef::NewFromUtf8(vm, "setWidth"), in GetArkUINativeModule()
432 common->Set(vm, panda::StringRef::NewFromUtf8(vm, "resetWidth"), in GetArkUINativeModule()
434 common->Set(vm, panda::StringRef::NewFromUtf8(vm, "setHeight"), in GetArkUINativeModule()
436 common->Set(vm, panda::StringRef::NewFromUtf8(vm, "resetHeight"), in GetArkUINativeModule()
438 common->Set(vm, panda::StringRef::NewFromUtf8(vm, "setBorderRadius"), in GetArkUINativeModule()
440 common->Set(vm, panda::StringRef::NewFromUtf8(vm, "resetBorderRadius"), in GetArkUINativeModule()
442 common in GetArkUINativeModule()
[all...]
/foundation/multimedia/audio_framework/frameworks/native/opensles/src/obj/
H A Doutput_mix_obj.cpp16 #include <common.h>
H A Dengine_obj.cpp16 #include <common.h>
H A Daudiocapturer_obj.cpp16 #include <common.h>
H A Daudioplayer_obj.cpp16 #include <common.h>
/foundation/multimedia/audio_framework/frameworks/native/opensles/src/util/
H A Dtable_struct.cpp16 #include <common.h>
/foundation/multimedia/audio_framework/frameworks/native/opensles/src/adapter/
H A Dreadorwritecallback_adapter.cpp16 #include <common.h>
/foundation/communication/netmanager_base/services/netmanagernative/include/netsys/
H A Dbitcast.h23 namespace common { namespace
31 } // namespace common
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DarkComponent.js183 getUINativeModule().common.resetBackgroundColor(node);
186 getUINativeModule().common.setBackgroundColor(node, this.value);
200 getUINativeModule().common.resetWidth(node);
203 getUINativeModule().common.setWidth(node, this.value);
217 getUINativeModule().common.resetBorderWidth(node);
221 getUINativeModule().common.setBorderWidth(node, this.value, this.value, this.value, this.value);
226 getUINativeModule().common.setBorderWidth(node, this.value.top, this.value.end, this.value.bottom, this.value.start);
228 getUINativeModule().common.setBorderWidth(node, this.value.top, this.value.right, this.value.bottom, this.value.left);
262 getUINativeModule().common.resetHeight(node);
265 getUINativeModule().common
[all...]
/foundation/ability/idl_tool/
H A DMakefile19 export CXXFLAGS = -std=c++14 -O2 -Wall -fno-common -fno-strict-aliasing -s
/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/components/
H A Dprevious_joint_matrices_component.h27 #include <3d/shaders/common/3d_dm_structures_common.h>
/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/ecs/components/
H A Dskin_joints_component.h21 #include <3d/shaders/common/3d_dm_structures_common.h>

Completed in 15 milliseconds

1234