Home | History | Annotate | Download | only in back

Lines Matching refs:transports

82 static struct bag *transports;            /* of TransportSpec */
98 * Elements of the transports bag
809 * Initialize transports
816 (void)bagEnumerateOver(transports, startTransport, &arg);
820 * 1) none of the transports was successfully started, and
826 EXIT_ERROR(map2jvmtiError(arg.error), "No transports initialized");
901 (void)bagEnumerateOver(transports, startTransport, &arg);
1157 transports = bagCreateBag(sizeof(TransportSpec), 3);
1158 if (transports == NULL) {
1159 EXIT_ERROR(AGENT_ERROR_OUT_OF_MEMORY,"transports");
1175 currentTransport = bagAdd(transports);
1331 if (bagSize(transports) == 0) {
1337 * TO DO: Remove when multiple transports are allowed. (replace with
1340 if (bagSize(transports) > 1) {
1341 errmsg = "multiple transports are not supported in this release";
1347 jboolean specified = bagEnumerateOver(transports, checkAddress, NULL);