Re-indent resolver code with clang-format

clang-format --style file -i *.{c,h}

Test: code does not compile yet
Change-Id: I8c509de4f8558b2dd74668cf40bb73c4316dc5ad
diff --git a/resolv/resolv_params.h b/resolv/resolv_params.h
index ecc1cc3..e2c7e48 100644
--- a/resolv/resolv_params.h
+++ b/resolv/resolv_params.h
@@ -20,43 +20,42 @@
 #include <stdint.h>
 
 /* Hard-coded defines */
-#define MAXNS			4	/* max # name servers we'll track */
-#define MAXDNSRCH		6	/* max # domains in search path */
-#define MAXDNSRCHPATH		256	/* max length of domain search paths */
-#define MAXNSSAMPLES		64	/* max # samples to store per server */
+#define MAXNS 4           /* max # name servers we'll track */
+#define MAXDNSRCH 6       /* max # domains in search path */
+#define MAXDNSRCHPATH 256 /* max length of domain search paths */
+#define MAXNSSAMPLES 64   /* max # samples to store per server */
 
 /* Defaults used for initializing __res_params */
-#define SUCCESS_THRESHOLD	75	/* if successes * 100 / total_samples is less than
-					 * this value, the server is considered failing
-					 */
-#define NSSAMPLE_VALIDITY	1800	/* Sample validity in seconds.
-					 * Set to -1 to disable skipping failing
-					 * servers.
-					 */
+#define SUCCESS_THRESHOLD                                 \
+    75 /* if successes * 100 / total_samples is less than \
+        * this value, the server is considered failing    \
+        */
+#define NSSAMPLE_VALIDITY                         \
+    1800 /* Sample validity in seconds.           \
+          * Set to -1 to disable skipping failing \
+          * servers.                              \
+          */
 
 /* If EDNS0_PADDING is defined, queries will be padded to a multiple of this length
 when EDNS0 is active. */
-#define EDNS0_PADDING	128
+#define EDNS0_PADDING 128
 
 /* per-netid configuration parameters passed from netd to the resolver */
 struct __res_params {
-    uint16_t sample_validity; // sample lifetime in s
+    uint16_t sample_validity;  // sample lifetime in s
     // threshold of success / total samples below which a server is considered broken
-    uint8_t success_threshold; // 0: disable, value / 100 otherwise
-    uint8_t min_samples; // min # samples needed for statistics to be considered meaningful
-    uint8_t max_samples; // max # samples taken into account for statistics
-    int base_timeout_msec;  // base query retry timeout (if 0, use RES_TIMEOUT)
+    uint8_t success_threshold;  // 0: disable, value / 100 otherwise
+    uint8_t min_samples;        // min # samples needed for statistics to be considered meaningful
+    uint8_t max_samples;        // max # samples taken into account for statistics
+    int base_timeout_msec;      // base query retry timeout (if 0, use RES_TIMEOUT)
 };
 
-typedef enum { res_goahead, res_nextns, res_modified, res_done, res_error }
-	res_sendhookact;
+typedef enum { res_goahead, res_nextns, res_modified, res_done, res_error } res_sendhookact;
 
-typedef res_sendhookact (*res_send_qhook)(struct sockaddr * const *,
-					      const u_char **, int *,
-					      u_char *, int, int *);
+typedef res_sendhookact (*res_send_qhook)(struct sockaddr* const*, const u_char**, int*, u_char*,
+                                          int, int*);
 
-typedef res_sendhookact (*res_send_rhook)(const struct sockaddr *,
-					      const u_char *, int, u_char *,
-					      int, int *);
+typedef res_sendhookact (*res_send_rhook)(const struct sockaddr*, const u_char*, int, u_char*, int,
+                                          int*);
 
-#endif // _RESOLV_PARAMS_H
+#endif  // _RESOLV_PARAMS_H