Lines Matching defs:layer
55 ** layer pushed on top. Then listens for incoming connections. Each connection
78 PRFileDesc *layer = PR_CreateIOLayerStub(identity, &myMethods);
79 PRStatus rv = PR_PushIOLayer(stack, PR_GetLayersIdentity(stack), layer);
81 PR_fprintf(logFile, "Pushed layer(0x%x) onto stack(0x%x)\n", layer, stack);
89 PRFileDesc *layer;
92 /* push a dummy layer */
94 layer = PR_CreateIOLayerStub(tmp_identity, PR_GetDefaultIOMethods());
95 rv = PR_PushIOLayer(stack, PR_GetLayersIdentity(stack), layer);
97 PR_fprintf(logFile, "Pushed layer(0x%x) onto stack(0x%x)\n", layer,
101 /* push a data procesing layer */
102 layer = PR_CreateIOLayerStub(identity, &myMethods);
103 rv = PR_PushIOLayer(stack, PR_GetLayersIdentity(stack), layer);
105 PR_fprintf(logFile, "Pushed layer(0x%x) onto stack(0x%x)\n", layer,
109 /* push another dummy layer */
111 layer = PR_CreateIOLayerStub(tmp_identity, PR_GetDefaultIOMethods());
112 rv = PR_PushIOLayer(stack, PR_GetLayersIdentity(stack), layer);
114 PR_fprintf(logFile, "Pushed layer(0x%x) onto stack(0x%x)\n", layer,
125 PR_fprintf(logFile, "Popped layer(0x%x) from stack(0x%x)\n", popped, stack);
465 /* layer.c */