Searched refs:retcode (Results 1 - 9 of 9) sorted by relevance

/packages/apps/OMA-DM/engine/javaplugin/nativelib/src/
H A DDmtJavaPlugin.cc46 SYNCML_DM_RET_STATUS_T retcode = pJavaPluginManager->ExecuteNode(pArgs, pCorrelator, pTree, results); local
47 DmtJavaPlugin_Debug("DmtJavaPluginManager::ExecuteNode -> retcode = %d\n", retcode);
49 return retcode;
71 SYNCML_DM_RET_STATUS_T retcode = pJavaPluginTree->BuildPluginTree(); local
72 DmtJavaPlugin_Debug("DmtJavaPluginManager::BuildPluginTree -> retcode = %d\n", retcode);
74 pPluginTree = (retcode != SYNCML_DM_SUCCESS ? NULL : pJavaPluginTree);
76 return retcode;
H A DDmtJavaPluginManager.cc42 #define CHECK_EXCEPTION(retcode) \
46 (retcode) = SYNCML_DM_FAIL; \
178 SYNCML_DM_RET_STATUS_T retcode = data.GetString(dmStringValue); local
179 if (retcode != SYNCML_DM_SUCCESS)
338 SYNCML_DM_RET_STATUS_T retcode = GetDmtNodeValue(type, pValue, data); local
339 if (retcode != SYNCML_DM_SUCCESS)
342 return retcode;
352 retcode = mEnv->CallIntMethod(mJavaPluginManager, javaMethod, objPath.getValue(), type, objValue.getValue());
353 CHECK_EXCEPTION(retcode);
354 return retcode;
387 SYNCML_DM_RET_STATUS_T retcode = atoi(pStatus); local
419 SYNCML_DM_RET_STATUS_T retcode = mEnv->CallIntMethod(mJavaPluginManager, javaMethod, objPath.getValue()); local
436 SYNCML_DM_RET_STATUS_T retcode = GetDmtNodeValue(type, pValue, data); local
467 SYNCML_DM_RET_STATUS_T retcode = mEnv->CallIntMethod(mJavaPluginManager, javaMethod, local
484 SYNCML_DM_RET_STATUS_T retcode = mEnv->CallIntMethod(mJavaPluginManager, javaMethod, objPath.getValue()); local
499 SYNCML_DM_RET_STATUS_T retcode = mEnv->CallIntMethod(mJavaPluginManager, javaMethod); local
523 SYNCML_DM_RET_STATUS_T retcode = SetServerID(pTree); local
603 SYNCML_DM_RET_STATUS_T retcode = SetDmtNodeValue(pType, pValue, data); local
[all...]
/packages/apps/OMA-DM/plugins/pluginhelper/com/android/omadm/pluginhelper/
H A DDmtMoBuilder.java84 int retcode = createInteriorNode(rootNodePath);
85 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
86 return retcode;
89 retcode = addNameToInteriorNode(rootNodePath, nodeName);
90 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
91 return retcode;
162 int retcode = createInteriorNode(rootNodePath);
163 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
164 return retcode;
167 retcode
[all...]
/packages/apps/OMA-DM/engine/javaplugin/api/com/android/omadm/plugin/
H A DDmtManagementObject.java81 int retcode = createInteriorNode_(rootNodePath);
82 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
83 return retcode;
86 retcode = addNameToInteriorNode(rootNodePath, nodeName);
87 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
88 return retcode;
123 int retcode = createInteriorNode_(rootNodePath);
124 if (retcode != ErrorCodes.SYNCML_DM_SUCCESS) {
125 return retcode;
128 retcode
[all...]
/packages/apps/OMA-DM/engine/dmlib/linux_java/samples/conui/src/
H A DdmSocketConnector.cc472 unsigned int retcode; // Return code local
502 retcode = connect(server_s, (struct sockaddr *)&server_addr,
505 if (retcode != 0) {
537 int retcode; local
547 retcode = recv(server_s, in_buf, BUF_SIZE, 0);
548 if ( g_nPrintfEnabled ) printf("Size: %d\n", retcode);
550 while ((retcode > 0) && (retcode != -1)) {
556 bEndHeader = DmParseHTTPHeader( in_buf, retcode, &strRemaining, lenRemaining);
564 nBufUsed += retcode;
[all...]
/packages/apps/OMA-DM/engine/xpl/src/
H A DdmSocketConnector.cc472 unsigned int retcode; // Return code local
502 retcode = connect(server_s, (struct sockaddr *)&server_addr,
505 if (retcode != 0) {
537 int retcode; local
547 retcode = recv(server_s, in_buf, BUF_SIZE, 0);
548 if ( g_nPrintfEnabled ) printf("Size: %d\n", retcode);
550 while ((retcode > 0) && (retcode != -1)) {
556 bEndHeader = DmParseHTTPHeader( in_buf, retcode, &strRemaining, lenRemaining);
564 nBufUsed += retcode;
[all...]
/packages/apps/OMA-DM/engine/javaplugin/api/com/android/omadm/plugin/impl/
H A DDmtPluginManager.java428 int retcode;
430 retcode = mPluginConnection.getOperationResult();
436 if (retcode == ErrorCodes.SYNCML_DM_SUCCESS) {
445 else if (retcode == ErrorCodes.SYNCML_DM_UNSUPPORTED_OPERATION) {
448 errString[0] = Integer.toString(retcode);
455 errString[0] = Integer.toString(retcode);
459 //throw new DmtException(retcode, "Value is not set");
515 int retcode;
517 retcode = mPluginConnection.getOperationResult();
523 if (retcode
[all...]
/packages/apps/OMA-DM/DMService/src/com/android/omadm/service/
H A DDMHttpConnector.java182 int retcode = connection.getResponseCode();
183 if (DBG) logd(urlString + " code: " + retcode + " status: "
185 return retcode;
H A DDMClientService.java563 int retcode = NativeDM.processBootstrapScript(data, isWbxml, serverId);
564 if (DBG) logd("processBootstrapScript retcode=" + retcode);
565 return retcode;

Completed in 153 milliseconds