Ross Schlaikjer

Results 7 comments of Ross Schlaikjer

Hmm, interesting - this file doesn't appear to have the format you'd expect based on this [trace code](https://android.googlesource.com/platform/art/+/master/runtime/trace.h#88) for ART I've been using for reference. A couple questions so I...

Hmm, interesting. I will try to replicate using Android studio when I have a moment. In the meantime, would you be able to take another trace, using the `Debug.startMethodTracingSampling` method...

Hmm. Try changing `EXPOSE 80` in the Dockerfile to `EXPOSE 8192` and rebuild / rerun. The server should be on port 8192 based on the docker config file.

Also, note that you might need to use the IP of the docker container, not localhost, to access the server - to find the container IP, you can run ```...

Try exposing the container port using port mapping, e.g. `docker run --rm -it -p 8192:8192 [hash]` and then going to localhost:8192. Also, note that the docker image doesn't use `files/app.config`,...

`/tmp` is a path inside your docker container. You can either attach to the running container and do something with the files inside it, or mount the tmp directory of...

Nothing is _guaranteed_, but the implementation in glibc writes directly to the buffer as it goes, so you will likely have some large fraction of `wslen` bytes holding valid formatted...