Home
last modified time | relevance | path

Searched refs:sendResponse (Results 1 – 25 of 1438) sorted by relevance

12345678910>>...58

/dports/net/liblinphone/linphone-3.12.0/daemon/commands/
H A Djitterbuffer.cc60 app->sendResponse(JitterBufferResponse(app->getCore(), true, true)); in exec()
64 app->sendResponse(Response("Invalid argument.")); in exec()
77 app->sendResponse(Response("Bad command argument.")); in exec()
85 app->sendResponse(JitterBufferResponse(app->getCore(), arg1 == "audio", arg1 == "video")); in exec()
104 app->sendResponse(Response("Missing arguments")); in exec()
108 app->sendResponse(Response("Invalid command syntax.")); in exec()
114 app->sendResponse(Response("Missing call or stream id.")); in exec()
122 app->sendResponse(Response("No such call id")); in exec()
134 app->sendResponse(Response("No such stream id")); in exec()
140 app->sendResponse(Response("No such active stream")); in exec()
[all …]
H A Dcall-transfer.cc51 app->sendResponse(Response("Missing call_to_transfer_id parameter.", Response::Error)); in exec()
60 app->sendResponse(Response("Invalid command format (wrong call_to_transfer_id parameter).")); in exec()
64 …app->sendResponse(Response("Missing call_to_transfer_to_id or sip_uri_to_transfer_to parameter.", … in exec()
71 …app->sendResponse(Response("Invalid command format (wrong call_to_transfer_to_id or sip_uri_to_tra… in exec()
78 app->sendResponse(Response("No call with such id.")); in exec()
84 app->sendResponse(Response("No call with such id.")); in exec()
91 app->sendResponse(Response(ostr.str(), Response::Ok)); in exec()
99 app->sendResponse(Response(ostr.str(), Response::Ok)); in exec()
104 app->sendResponse(Response("Error transferring call.")); in exec()
H A Dvideo.cc58 app->sendResponse(Response("No current call available.")); in exec()
64 app->sendResponse(Response("No call with such id.")); in exec()
78 app->sendResponse(Response("No streams running: can't [de]activate video")); in exec()
82 app->sendResponse(Response(activate ? "Camera activated." : "Camera deactivated", Response::Ok)); in exec()
120 app->sendResponse(Response("Missing parameter.", Response::Error)); in exec()
127 app->sendResponse(Response("No current call available.")); in exec()
133 app->sendResponse(Response("No call with such id.")); in exec()
143 app->sendResponse(Response("Invalid source.", Response::Error)); in exec()
147 …app->sendResponse(Response(activate ? "Dummy source selected." : "Webcam source selected.", Respon… in exec()
174 app->sendResponse(Response(enable?"Auto video ON": "Auto video OFF", Response::Ok)); in exec()
H A Dport.cc125 app->sendResponse(PortResponse(app->getCore(), PortResponse::AllPorts)); in exec()
129 app->sendResponse(Response("Incorrect type parameter.", Response::Error)); in exec()
135 app->sendResponse(PortResponse(app->getCore(), PortResponse::SIPPort)); in exec()
137 app->sendResponse(PortResponse(app->getCore(), PortResponse::AudioRTPPort)); in exec()
139 app->sendResponse(PortResponse(app->getCore(), PortResponse::VideoRTPPort)); in exec()
141 app->sendResponse(Response("Incorrect type parameter.", Response::Error)); in exec()
157 app->sendResponse(Response("Incorrect protocol parameter.", Response::Error)); in exec()
175 app->sendResponse(PortResponse(app->getCore(), PortResponse::SIPPort)); in exec()
178 app->sendResponse(PortResponse(app->getCore(), PortResponse::AudioRTPPort)); in exec()
181 app->sendResponse(PortResponse(app->getCore(), PortResponse::VideoRTPPort)); in exec()
[all …]
H A Daudio-codec-set.cc85 app->sendResponse(Response("Missing parameters.", Response::Error)); in exec()
93 app->sendResponse(Response("Incorrect mime type format.", Response::Error)); in exec()
100 app->sendResponse(Response("Missing/Incorrect parameter(s).", Response::Error)); in exec()
128 app->sendResponse(Response("New payload type number is already used.", Response::Error)); in exec()
131 app->sendResponse(PayloadTypeResponse(app->getCore(), payload, parser.getPosition())); in exec()
140 app->sendResponse(PayloadTypeResponse(app->getCore(), payload, parser.getPosition())); in exec()
142 app->sendResponse(Response("Invalid codec parameter.", Response::Error)); in exec()
146 app->sendResponse(Response("Audio codec not found.", Response::Error)); in exec()
H A Dmsfilter-add-fmtp.cc48 app->sendResponse(Response("Missing/Incorrect parameter(s).")); in exec()
54 app->sendResponse(Response("No Call with such id.")); in exec()
58 app->sendResponse(Response("This call doesn't have an active audio stream.")); in exec()
65 app->sendResponse(Response("No Audio Stream with such id.")); in exec()
70 app->sendResponse(Response("Incorrect parameter(s).")); in exec()
73 app->sendResponse(Response()); in exec()
H A Daudio-codec-move.cc56 app->sendResponse(Response("Missing parameters.", Response::Error)); in exec()
63 app->sendResponse(Response("Missing index parameter.", Response::Error)); in exec()
68 app->sendResponse(Response("Incorrect mime type format.", Response::Error)); in exec()
75 app->sendResponse(Response("Audio codec not found.", Response::Error)); in exec()
82 app->sendResponse(Response("Incorrect index parameter.", Response::Error)); in exec()
105 app->sendResponse(PayloadTypeResponse(app->getCore(), selected_payload, index)); in exec()
/dports/www/beehive/beehive-0.4.0/vendor/github.com/flashmob/go-guerrilla/
H A Dserver.go395 client.sendResponse(greeting)
430 client.sendResponse(helo)
435 client.sendResponse(ehlo,
463 client.sendResponse(r.SuccessMailCmd)
472 client.sendResponse(err)
478 client.sendResponse(r.SuccessMailCmd)
488 client.sendResponse(err.Error())
512 client.sendResponse(r.SuccessNoopCmd)
515 client.sendResponse(r.SuccessQuitCmd)
570 client.sendResponse(res)
[all …]
/dports/databases/akonadi/akonadi-21.12.3/src/server/
H A Dhandler.h94 template<typename T> inline void sendResponse(T &&response);
95 template<typename T> inline void sendResponse();
120 sendResponse<T>(T{}); in successResponse()
126 sendResponse<T>(std::move(response)); in successResponse()
130 template<typename T> inline void Handler::sendResponse() in sendResponse() function
132 m_connection->sendResponse<T>(T{}); in sendResponse()
135 template<typename T> inline void Handler::sendResponse(T &&response) in sendResponse() function
137 m_connection->sendResponse<T>(std::move(response)); in sendResponse()
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/wai-extra-3.0.29.2/Network/Wai/Middleware/
H A DGzip.hs96 gzip set app env sendResponse = app env $ \res ->
98 ResponseRaw{} -> sendResponse res
99 ResponseFile{} | gzipFiles set == GzipIgnore -> sendResponse res
115 _ -> sendResponse res
116 (ResponseFile {}, GzipIgnore) -> sendResponse res
117 _ -> compressE set res sendResponse
119 else sendResponse res
138 compressFile s hs file cache sendResponse = do
166 onSucc = sendResponse $ responseFile s (fixHeaders hs) tmpfile Nothing
183 compressE set res sendResponse =
[all …]
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/wai-extra-3.0.29.1/Network/Wai/Middleware/
H A DGzip.hs96 gzip set app env sendResponse = app env $ \res ->
98 ResponseRaw{} -> sendResponse res
99 ResponseFile{} | gzipFiles set == GzipIgnore -> sendResponse res
115 _ -> sendResponse res
116 (ResponseFile {}, GzipIgnore) -> sendResponse res
117 _ -> compressE set res sendResponse
119 else sendResponse res
138 compressFile s hs file cache sendResponse = do
166 onSucc = sendResponse $ responseFile s (fixHeaders hs) tmpfile Nothing
183 compressE set res sendResponse =
[all …]
/dports/www/hs-yesod-bin/yesod-bin-1.6.1/_cabal_deps/wai-extra-3.1.6/Network/Wai/Middleware/
H A DGzip.hs99 ResponseRaw{} -> sendResponse res
100 ResponseFile{} | gzipFiles set == GzipIgnore -> sendResponse res
116 _ -> sendResponse res
117 (ResponseFile {}, GzipIgnore) -> sendResponse res
118 _ -> compressE set res sendResponse
120 else sendResponse res
122 sendResponse = sendResponse' . mapResponseHeaders (vary:) function
141 compressFile s hs file cache sendResponse = do
169 onSucc = sendResponse $ responseFile s (fixHeaders hs) tmpfile Nothing
186 compressE set res sendResponse =
[all …]
/dports/www/hs-postgrest/postgrest-8.0.0/_cabal_deps/wai-extra-3.1.6/Network/Wai/Middleware/
H A DGzip.hs99 ResponseRaw{} -> sendResponse res
100 ResponseFile{} | gzipFiles set == GzipIgnore -> sendResponse res
116 _ -> sendResponse res
117 (ResponseFile {}, GzipIgnore) -> sendResponse res
118 _ -> compressE set res sendResponse
120 else sendResponse res
122 sendResponse = sendResponse' . mapResponseHeaders (vary:) function
141 compressFile s hs file cache sendResponse = do
169 onSucc = sendResponse $ responseFile s (fixHeaders hs) tmpfile Nothing
186 compressE set res sendResponse =
[all …]
/dports/www/hs-wai-app-static/wai-app-static-3.1.7.2/_cabal_deps/wai-extra-3.1.6/Network/Wai/Middleware/
H A DGzip.hs99 ResponseRaw{} -> sendResponse res
100 ResponseFile{} | gzipFiles set == GzipIgnore -> sendResponse res
116 _ -> sendResponse res
117 (ResponseFile {}, GzipIgnore) -> sendResponse res
118 _ -> compressE set res sendResponse
120 else sendResponse res
122 sendResponse = sendResponse' . mapResponseHeaders (vary:) function
141 compressFile s hs file cache sendResponse = do
169 onSucc = sendResponse $ responseFile s (fixHeaders hs) tmpfile Nothing
186 compressE set res sendResponse =
[all …]
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/wai-app-static-3.1.7.2/Network/Wai/Application/
H A DStatic.hs231 staticAppPieces _ _ req sendResponse
238 staticAppPieces ss rawPieces req sendResponse = liftIO $ do
241 Nothing -> sendResponse $ W.responseLBS H.status403
254 sendResponse $ fileToResponse file H.status200 headers
257 sendResponse $ W.responseLBS H.status304 [] ""
261 sendResponse $ W.responseLBS H.status200
272 sendResponse $ W.responseLBS H.status302
278 sendResponse $ W.responseLBS H.status302
284 Just app -> app req sendResponse
285 Nothing -> sendResponse $ W.responseLBS H.status404
[all …]
/dports/www/hs-wai-app-static/wai-app-static-3.1.7.2/Network/Wai/Application/
H A DStatic.hs231 staticAppPieces _ _ req sendResponse
238 staticAppPieces ss rawPieces req sendResponse = liftIO $ do
241 Nothing -> sendResponse $ W.responseLBS H.status403
254 sendResponse $ fileToResponse file H.status200 headers
257 sendResponse $ W.responseLBS H.status304 [] ""
261 sendResponse $ W.responseLBS H.status200
272 sendResponse $ W.responseLBS H.status302
278 sendResponse $ W.responseLBS H.status302
284 Just app -> app req sendResponse
285 Nothing -> sendResponse $ W.responseLBS H.status404
[all …]
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/ekoslive/
H A Dmessage.cpp269 sendResponse(commands[GET_CAMERAS], cameraList); in sendCameras()
335 sendResponse(commands[GET_MOUNTS], mountList); in sendMounts()
393 sendResponse(commands[GET_DOMES], domeList); in sendDomes()
443 sendResponse(commands[GET_CAPS], capList); in sendCaps()
509 sendResponse(commands[GET_DEVICES], deviceList); in sendDevices()
525 sendResponse(commands[GET_SCOPES], scopeList); in sendScopes()
1169 sendResponse(commands[GET_PROFILES], profiles); in sendProfiles()
1241 sendResponse(commands[FM_GET_DATA], data); in processFilterManagerCommands()
1909 sendResponse(commands[NEW_FOCUS_STATE], status); in updateFocusStatus()
1925 sendResponse(commands[NEW_DOME_STATE], status); in updateDomeStatus()
[all …]
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/wai-app-static-3.1.7.1/Network/Wai/Application/
H A DStatic.hs229 staticAppPieces _ _ req sendResponse
236 staticAppPieces ss rawPieces req sendResponse = liftIO $ do
239 Nothing -> sendResponse $ W.responseLBS H.status403
252 sendResponse $ fileToResponse file H.status200 headers
255 sendResponse $ W.responseLBS H.status304 [] ""
259 sendResponse $ W.responseLBS H.status200
270 sendResponse $ W.responseLBS H.status302
276 sendResponse $ W.responseLBS H.status302
282 Just app -> app req sendResponse
283 Nothing -> sendResponse $ W.responseLBS H.status404
[all …]
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/conch/ssh/
H A Dagent.py150 self.sendResponse(AGENT_FAILURE, b"")
154 self.sendResponse(AGENT_FAILURE, b"")
158 def sendResponse(self, reqType, data): member in SSHAgentServer
174 self.sendResponse(AGENT_IDENTITIES_ANSWER, b"".join(resp))
184 return self.sendResponse(AGENT_FAILURE, b"")
187 self.sendResponse(
214 self.sendResponse(AGENT_SUCCESS, b"")
223 self.sendResponse(AGENT_SUCCESS, b"")
231 self.sendResponse(AGENT_SUCCESS, b"")
249 self.sendResponse(AGENT_SUCCESS, b"")
[all …]
/dports/math/vtk6/VTK-6.2.0/ThirdParty/Twisted/twisted/conch/ssh/
H A Dagent.py161 self.sendResponse(AGENT_FAILURE, '')
165 self.sendResponse(AGENT_FAILURE, '')
170 def sendResponse(self, reqType, data): member in SSHAgentServer
187 self.sendResponse(AGENT_IDENTITIES_ANSWER, ''.join(resp))
198 return self.sendResponse(AGENT_FAILURE, '')
225 self.sendResponse(AGENT_SUCCESS, '')
235 self.sendResponse(AGENT_SUCCESS, '')
244 self.sendResponse(AGENT_SUCCESS, '')
255 self.sendResponse(AGENT_RSA_IDENTITIES_ANSWER, struct.pack('!L', 0))
263 self.sendResponse(AGENT_SUCCESS, '')
[all …]
/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/wai-extra-3.0.29.2/Network/Wai/
H A DEventSource.hs29 eventSourceAppChan chan req sendResponse = do
31 eventSourceAppIO (readChan chan') req sendResponse
36 eventSourceAppIO src _ sendResponse =
37 sendResponse $ responseStream
52 eventStreamAppRaw handler _ sendResponse =
53 sendResponse $ responseStream
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/wai-extra-3.0.29.1/Network/Wai/
H A DEventSource.hs29 eventSourceAppChan chan req sendResponse = do
31 eventSourceAppIO (readChan chan') req sendResponse
36 eventSourceAppIO src _ sendResponse =
37 sendResponse $ responseStream
50 eventStreamAppRaw handler _ sendResponse =
51 sendResponse $ responseStream
/dports/www/hs-yesod-bin/yesod-bin-1.6.1/_cabal_deps/wai-extra-3.1.6/Network/Wai/
H A DEventSource.hs29 eventSourceAppChan chan req sendResponse = do
31 eventSourceAppIO (readChan chan') req sendResponse
36 eventSourceAppIO src _ sendResponse =
37 sendResponse $ responseStream
52 eventStreamAppRaw handler _ sendResponse =
53 sendResponse $ responseStream
/dports/www/hs-wai-app-static/wai-app-static-3.1.7.2/_cabal_deps/wai-extra-3.1.6/Network/Wai/
H A DEventSource.hs29 eventSourceAppChan chan req sendResponse = do
31 eventSourceAppIO (readChan chan') req sendResponse
36 eventSourceAppIO src _ sendResponse =
37 sendResponse $ responseStream
52 eventStreamAppRaw handler _ sendResponse =
53 sendResponse $ responseStream
/dports/www/hs-postgrest/postgrest-8.0.0/_cabal_deps/wai-extra-3.1.6/Network/Wai/
H A DEventSource.hs29 eventSourceAppChan chan req sendResponse = do
31 eventSourceAppIO (readChan chan') req sendResponse
36 eventSourceAppIO src _ sendResponse =
37 sendResponse $ responseStream
52 eventStreamAppRaw handler _ sendResponse =
53 sendResponse $ responseStream

12345678910>>...58